Skip to content

Commit b6083e1

Browse files
Change the delay for how often we synchronize solutions
Now that we're doing all the WorkspaceChanged notifications on background threads, that means the notifications won't be quite as batched as before; this was causing an increase in synchronizations that was creating some wasted work.
1 parent 452703e commit b6083e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EditorFeatures/Core/Remote/SolutionChecksumUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public SolutionChecksumUpdater(
5959
_shutdownToken = shutdownToken;
6060

6161
_synchronizeWorkspaceQueue = new AsyncBatchingWorkQueue(
62-
DelayTimeSpan.NearImmediate,
62+
DelayTimeSpan.Short,
6363
SynchronizePrimaryWorkspaceAsync,
6464
listener,
6565
shutdownToken);

0 commit comments

Comments
 (0)