File tree Expand file tree Collapse file tree
src/Cardano/Configuration/File Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ license-file: LICENSE
1010author : Javier Sagredo
11111212copyright :
13- INTERSECT 2025
13+ INTERSECT 2026
1414
1515category : Data
1616build-type : Simple
@@ -52,7 +52,6 @@ library
5252 filepath,
5353 iohk-monitoring,
5454 iproute,
55- mtl,
5655 network,
5756 optparse-applicative,
5857 sop-core,
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ parseTracer p obj = obj .:= Aeson.fromText (proxyName p)
244244
245245data TracingSystem
246246 = LegacyTracing TraceSelection
247- | TraceDispatcher TraceSelection
247+ | TraceDispatcher
248248 deriving (Generic , Show )
249249
250250data TracingConfiguration = TracingConfiguration
@@ -263,7 +263,7 @@ instance FromJSON TracingConfiguration where
263263 Just True -> do
264264 newSystem <- v .:? " UseTraceDispatcher"
265265 let tr = case newSystem of
266- Just True -> TraceDispatcher
266+ Just True -> const TraceDispatcher
267267 _ -> LegacyTracing
268268 Just . tr <$> parseJSON (Object v)
269269 _ ->
You can’t perform that action at this time.
0 commit comments