Improved:

- Now replication will be paced by collecting chunks.
This commit is contained in:
vorotamoroz
2023-05-09 17:49:40 +09:00
parent 7c06750d93
commit 8d66c372e1
2 changed files with 11 additions and 1 deletions

View File

@@ -1599,6 +1599,16 @@ ${stringifyYaml(pluginConfig)}`;
})
);
new Setting(containerHatchEl)
.setName("Do not pace synchronization")
.setDesc("If this toggle enabled, synchronisation will not be paced by queued entries. If synchronisation has been deadlocked, please make this enabled once.")
.addToggle((toggle) =>
toggle.setValue(this.plugin.settings.doNotPaceReplication).onChange(async (value) => {
this.plugin.settings.doNotPaceReplication = value;
await this.plugin.saveSettings();
})
);

Submodule src/lib updated: fb3070851f...051b50ca38