Skip to content

Commit e12b508

Browse files
committed
fix dump
1 parent 16e1350 commit e12b508

File tree

1 file changed

+1
-1
lines changed
  • hls-graph/src/Development/IDE/Graph/Internal

1 file changed

+1
-1
lines changed

hls-graph/src/Development/IDE/Graph/Internal/Types.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ dumpSchedulerState SchedulerState{..} = atomically $ do
322322
, PP.indent 2 (ppKeys ready)
323323
, PP.pretty ("pending:" :: String) <> PP.pretty (length pendingPairs)
324324
, PP.indent 2 (ppPairs pendingPairs)
325-
, PP.pretty ("running:" :: String) <> PP.pretty (length (map fst pendingPairs))
325+
, PP.pretty ("running:" :: String) <> PP.pretty (length (toListKeySet dirties))
326326
, PP.indent 2 (ppKeys (toListKeySet dirties))
327327
, PP.pretty ("blocked:" :: String) <> PP.pretty (length (toListKeySet blocked))
328328
, PP.indent 2 (ppKeys (toListKeySet blocked))

0 commit comments

Comments
 (0)