Fix: Use empty string default for OIDC_CUSTOM_PARAMS to avoid invalid…#27317
Fix: Use empty string default for OIDC_CUSTOM_PARAMS to avoid invalid…#27317exedistrict-ux wants to merge 2 commits intoopen-metadata:mainfrom
Conversation
… YAML config Fixes #26775 Changed OIDC_CUSTOM_PARAMS default from {} to "{}" to prevent invalid OpenMetadata config parsing issue with Docker Compose interpolation.
|
Hi there 👋 Thanks for your contribution! The OpenMetadata team will review the PR shortly! Once it has been labeled as Let us know if you need any help! |
|
Hi there 👋 Thanks for your contribution! The OpenMetadata team will review the PR shortly! Once it has been labeled as Let us know if you need any help! |
Code Review
|
| Compact |
|
Was this helpful? React with 👍 / 👎 | Gitar
|
Hi @exedistrict-ux, thanks for your pr here! We had a PR submitted for this already here. Please make sure that you are assigned an issue and that there is not a PR out for it already before submitting something. We will reopen this PR if necessary. |
Fixes #26775
Describe your changes:
Fixed OIDC_CUSTOM_PARAMS default value in docker-compose-postgres.yml
What changes did you make?
Changed OIDC_CUSTOM_PARAMS default from
{}to"{}"in two places(execute-migrate-all and openmetadata-server services)
Why did you make them?
The unquoted
{}caused Docker Compose interpolation to produce invalidOpenMetadata YAML config (
customParams: {}) which prevented server startupHow did you test your changes?
Code review of the docker-compose file - the fix uses literal string
to avoid brace-parsing ambiguity in Docker Compose