Replies: 2 comments
|
Good question. When the application starts, it needs to populate the RouteTable with existing triggers. Otherwise, the route table would remain empty until the user publishes HTTP workflows. Leep in mind that the RoutTable is an in-memory lookup and does not have its own persistence, |
0 replies
|
Closing as resolved: the explanation above covers why unchanged triggers populate the in-memory route table at startup, and the corresponding issue #6286 was closed. If you observe different behavior in a current release, please open a new issue with the Elsa version and a minimal reproduction. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
UpdateRouteTable.HandleAsync(WorkflowTriggersIndexed notification, CancellationToken cancellationToken)
await routeTableUpdater.AddRoutesAsync(notification.IndexedWorkflowTriggers.UnchangedTriggers, cancellationToken);
but why add UnchangedTriggers?
All reactions