We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I try to use the standard way to do a postconfigure of the the configuration like this:
services.PostConfigure<SwaggerFileConfiguration>(fileconfiguration => { foreach (var swaggerEndpoint in fileconfiguration.SwaggerEndPoints) { ConfigureEndpoint(swaggerEndpoint, configuration); } });
But the foreach is never executed. Any idea why? For ocelot itself the followiing works:
services.PostConfigure<FileConfiguration>(fileConfiguration => { foreach (var route in fileConfiguration.Routes) { ConfigureRoute(route, configuration); } });
The text was updated successfully, but these errors were encountered:
Think i found it. The following does what i needs: services.PostConfigure<List>
Sorry, something went wrong.
Burgyn
No branches or pull requests
Hi,
I try to use the standard way to do a postconfigure of the the configuration like this:
But the foreach is never executed. Any idea why?
For ocelot itself the followiing works:
The text was updated successfully, but these errors were encountered: