Skip to content

Commit 2e335d2

Browse files
authored
Update payload size limit (microsoft#185052)
1 parent f1b2a3a commit 2e335d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/editSessions/browser/editSessionsStorageService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class EditSessionsWorkbenchService extends Disposable implements IEditSes
3333

3434
declare _serviceBrand: undefined;
3535

36-
public readonly SIZE_LIMIT = 1024 * 1024 * 2; // 2 MB
36+
public readonly SIZE_LIMIT = Math.floor(1024 * 1024 * 1.9); // 2 MB
3737

3838
private serverConfiguration = this.productService['editSessions.store'];
3939
private machineClient: IUserDataSyncMachinesService | undefined;

0 commit comments

Comments
 (0)