We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16e1350 commit e12b508Copy full SHA for e12b508
hls-graph/src/Development/IDE/Graph/Internal/Types.hs
@@ -322,7 +322,7 @@ dumpSchedulerState SchedulerState{..} = atomically $ do
322
, PP.indent 2 (ppKeys ready)
323
, PP.pretty ("pending:" :: String) <> PP.pretty (length pendingPairs)
324
, PP.indent 2 (ppPairs pendingPairs)
325
- , PP.pretty ("running:" :: String) <> PP.pretty (length (map fst pendingPairs))
+ , PP.pretty ("running:" :: String) <> PP.pretty (length (toListKeySet dirties))
326
, PP.indent 2 (ppKeys (toListKeySet dirties))
327
, PP.pretty ("blocked:" :: String) <> PP.pretty (length (toListKeySet blocked))
328
, PP.indent 2 (ppKeys (toListKeySet blocked))
0 commit comments