File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
tests/FSharp.Test.Utilities Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ module CacheOptions =
101101 {
102102 CacheOptions.TotalCapacity = 1024
103103 CacheOptions.HeadroomPercentage = 50
104- CacheOptions.EvictionMode = EvictionMode.MailboxProcessor
104+ CacheOptions.EvictionMode = EvictionMode.Immediate // EvictionMode. MailboxProcessor
105105 CacheOptions.Comparer = HashIdentity.Structural
106106 }
107107
Original file line number Diff line number Diff line change @@ -205,10 +205,10 @@ module OneTimeSetup =
205205 AssemblyResolver.addResolver ()
206206
207207 // Increase worker threads to mitigate temporary starvation from many caches with MailboxProcessors
208- let workers , iocp = ThreadPool.GetMinThreads()
209- let target = max workers ( Environment.ProcessorCount * 4 )
210- if target > workers then
211- ThreadPool.SetMinThreads( target, iocp) |> ignore
208+ // let workers, iocp = ThreadPool.GetMinThreads()
209+ // let target = max workers (Environment.ProcessorCount * 4)
210+ // if target > workers then
211+ // ThreadPool.SetMinThreads(target, iocp) |> ignore
212212 #endif
213213 log " Installing TestConsole redirection"
214214 TestConsole.install()
You can’t perform that action at this time.
0 commit comments