Skip to content

Commit f1cd85a

Browse files
committed
default pause 1sec
1 parent 1211574 commit f1cd85a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fsharp/vs/Reactor.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module internal Reactor =
3131
/// are open.
3232
type Reactor() =
3333
static let GetEnvInteger e dflt = match System.Environment.GetEnvironmentVariable(e) with null -> dflt | t -> try int t with _ -> dflt
34-
static let pauseBeforeBackgroundWorkDefault = GetEnvInteger "FCS_PauseBeforeBackgroundWorkMilliseconds" 2000
34+
static let pauseBeforeBackgroundWorkDefault = GetEnvInteger "FCS_PauseBeforeBackgroundWorkMilliseconds" 1000
3535
let mutable pauseBeforeBackgroundWork = pauseBeforeBackgroundWorkDefault
3636

3737
// We need to store the culture for the VS thread that is executing now,

0 commit comments

Comments
 (0)