Skip to content

Commit 29aab06

Browse files
authored
chore: Increase rerun interval for BG service from 6s to 60s (#914)
1 parent a1de252 commit 29aab06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

background-charm-service/src/space-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class SpaceManager {
4242
this.maxRetries = options.maxRetries ?? 3;
4343
this.pollingIntervalMs = options.pollingIntervalMs ?? 100;
4444
this.deactivationTimeoutMs = options.deactivationTimeoutMs ?? 10000;
45-
this.rerunIntervalMs = options.rerunIntervalMs ?? 6000;
45+
this.rerunIntervalMs = options.rerunIntervalMs ?? 60000;
4646
this.workerController = new WorkerController(this.did);
4747
this.timeoutMs = options.timeoutMs ?? 10000;
4848
log(`Charm scheduler initialized`);

0 commit comments

Comments
 (0)