You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any related issues such as sub tasks and issues reported in other repositories (e.g., component repositories), similar problems, etc.
Suggested label(s) (optional)
Optional comma-separated list of suggested labels. Non committers can’t assign labels to issues, and thereby, this will help issue creators who are not a committer to suggest possible labels.
Suggested assignee(s) (optional)
Optional comma-separated list of suggested team members who should attend the issue. Non committers can’t assign issues to assignees, and thereby, this will help issue creators who are not a committer to suggest possible assignees.
The text was updated successfully, but these errors were encountered:
Hi, I think @SanojPunchihewa is almost right (the suffix of the "class" entry, after the last full stop is the CLASS name, not the HANDLER name).
I would personally keep the current format to avoid refactorings for deployment.toml files that define SynapseHandlers.
With the current format, the only way of disabling an handler is by commenting it out in deployment.toml.
If you want to enable/disable a specific handler without commenting it out, then you might add the "enabled" boolean property with an explicit value of "false" (the default being "true"), like this:
It would also be nice to know/define what the triggering order of multiple handlers is.
Are they triggered in the same order in which they are defined in the deployment.toml file (thus SynapseHandlers are kept in a LIST) or the triggering order is undefined (thus SynapseHandlers are kept in a SET)?
In the latter case, it could be useful to add yet another attribute (like for IdentityHandlers): "priority".
If HandlerB must be triggered after HandlerA, then this snippet could express this requirement (assuming that handlers with lower values of priority are executed before handlers with higher values of priority):
Description
Below is the configuration you have to add to enable a synapse handler
Related PRs:
wso2/docs-apim#8214
wso2/docs-apim#8220
wso2/docs-apim#8221
wso2/docs-apim#8222
wso2/docs-apim#8223
Steps to reproduce
Affected version(s)
Related issue(s) (optional)
Suggested label(s) (optional)
Suggested assignee(s) (optional)
The text was updated successfully, but these errors were encountered: