We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba0ad5c commit 263b3dfCopy full SHA for 263b3df
src/discovery/Discovery.ts
@@ -309,6 +309,7 @@ class Discovery {
309
}
310
311
await Promise.all(taskPromises);
312
+ this.logger.info(`Stopped all tasks for ${this.constructor.name}`);
313
this.taskManager.deregisterHandler(this.discoverVertexHandlerId);
314
this.taskManager.deregisterHandler(this.checkRediscoveryHandlerId);
315
this.logger.info(`Stopped ${this.constructor.name}`);
@@ -1061,7 +1062,7 @@ class Discovery {
1061
1062
]);
1063
1064
// We want to lock all the ids at once before moving ahead
- const locks = gestaltIds.map((gestaltIdEncoded) => {
1065
+ const locks = gestaltIds.map(([gestaltIdEncoded]) => {
1066
return [
1067
this.constructor.name,
1068
this.discoverVertexHandlerId,
0 commit comments