AER-4020 Added feature to override queue configuration settings with environment variables#119
Merged
Hilbrand merged 2 commits intoaerius:mainfrom May 7, 2026
Merged
Conversation
…nt variables This change will make it possible to override any value in the queue configuration settings. There are some additional breaking changes: - In the queue configuration files the client queue configuration has been changed from an list of client queues to a map of client queues with the client queue name as key. This makes it easier to override values for specific client queues as the name of the queue can be used. With the list the index would have to be used, but that is somewhat arbitrary and difficult to validate. For now the old way is still supported. - Overriding complete queue file configuration for a single worker queue with an environment variable has been removed in favor of overriding single values. - Also removed some of the test configuration files as those are not actually used, but where template files for actually configuration used as such in the past.
…g client queue configuration That way the map variant is not part of the actual configuration file used in the Task Manager because the list variant is preferred to be used throughout the code, but the map variant is preferred for configuration as it allows easier overriding values with environment variables.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change will make it possible to override any value in the queue configuration settings.
There are some additional breaking changes: