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
disabled
“Adding and overriding configuration” section in the documentation states:
For single-value options like command, working_dir or disabled, the new value replaces the old value.
command
working_dir
However, the old value of disabled is not actually replaced if the new value is false.
false
process-compose
1.2.0
Ubuntu 22.04.4 LTS
process-compose.yml:
process-compose.yml
version: "0.5" processes: test: disabled: true command: echo foo
process-compose.override.yml:
process-compose.override.yml
processes: test: disabled: false command: echo bar
Run process-compose run test.
process-compose run test
bar
The text was updated successfully, but these errors were encountered:
Hi @Invizory,
This is the expected behavior. See: darccio/mergo#24 (comment)
Sorry, something went wrong.
Issue #177: test merge for disabled processes
6aa0b8e
No branches or pull requests
Defect
“Adding and overriding configuration” section in the documentation states:
However, the old value of
disabled
is not actually replaced if the new value isfalse
.Version of
process-compose
:1.2.0
OS environment:
Ubuntu 22.04.4 LTS
Steps or code to reproduce the issue:
process-compose.yml
:process-compose.override.yml
:Run
process-compose run test
.Expected result:
Actual result:
The text was updated successfully, but these errors were encountered: