Skip to content

Commit e59db7a

Browse files
refactor(Wind): Remove mock sync sleep from MountainSyncHelper
Strip the `Effect.sleep(10)` used as a simulated sync delay and its "Mock sync for now" comment from the `SyncNowEffect` generator. The Mountain, IPC, and Telemetry services are already injected (though currently unused, denoted by underscore-prefixed parameters), and telemetry logging of the sync attempt is in place; the artificial sleep was the last piece of test scaffolding blocking a real sync cycle. Mountain integration — fetching actual state changes — remains gated by the `// DEPENDENCY: Requires Mountain service integration` placeholder and will be wired in a subsequent change.
1 parent aad9ce3 commit e59db7a

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

Source/Effect/MountainSync/Implementation/MountainSyncHelper.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ const SyncNowEffect = (
3939

4040
yield* telemetry.log("info", "[MountainSync] Performing sync...");
4141

42-
// Mock sync for now
43-
yield* Effect.sleep(10);
44-
4542
return {
4643
success: true,
4744
itemsSynced: 0,

0 commit comments

Comments
 (0)