Skip to content

Commit bc1eaf3

Browse files
committed
Disable parallel position pickling
Let's see whether this addresses the other mysterious failures as well
1 parent fe0c664 commit bc1eaf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/transform/Pickler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class Pickler extends Phase {
8686
pickled
8787
}(using ExecutionContext.global)
8888
def force(): Array[Byte] = Await.result(pickledF, Duration.Inf)
89-
if ctx.settings.YtestPickler.value then force()
89+
if true || ctx.settings.YtestPickler.value then force()
9090
unit.pickled += (cls -> force)
9191
}
9292
}

0 commit comments

Comments
 (0)