Skip to content

Commit

Permalink
fix: syncNodeGraph during agent startup is now non-blocking
Browse files Browse the repository at this point in the history
  • Loading branch information
emmacasolin committed Jun 14, 2022
1 parent 17396ab commit 8deddc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PolykeyAgent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ class PolykeyAgent {
await this.nodeManager.start();
await this.nodeConnectionManager.start({ nodeManager: this.nodeManager });
await this.nodeGraph.start({ fresh });
await this.nodeConnectionManager.syncNodeGraph();
await this.nodeConnectionManager.syncNodeGraph(false);
await this.discovery.start({ fresh });
await this.vaultManager.start({ fresh });
await this.notificationsManager.start({ fresh });
Expand Down

0 comments on commit 8deddc5

Please sign in to comment.