Skip to content

Commit

Permalink
fix: changed TaskHandlerId of Discovery.discoverVertexHandlerId to …
Browse files Browse the repository at this point in the history
…no longer use the `name` property of the handler function due to #453
  • Loading branch information
amydevs committed Feb 22, 2024
1 parent 723c569 commit 80ac79d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/discovery/Discovery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class Discovery {
}
};
public readonly discoverVertexHandlerId =
`${this.constructor.name}.${this.discoverVertexHandler.name}.discoverVertexHandlerId` as TaskHandlerId;
`${this.constructor.name}.discoverVertexHandler` as TaskHandlerId;

public constructor({
keyRing,
Expand Down

0 comments on commit 80ac79d

Please sign in to comment.