Skip to content

Commit

Permalink
boolean logic bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
o-nikolas committed Oct 28, 2024
1 parent f068bcd commit 4256cdb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/breeze/src/airflow_breeze/params/shell_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,8 @@ def __post_init__(self):
if (
self.backend
and self.integration
and not (self.backend == POSTGRES_BACKEND and KEYCLOAK_INTEGRATION in self.integration)
and KEYCLOAK_INTEGRATION in self.integration
and not self.backend == POSTGRES_BACKEND
):
get_console().print(
"[error]When using the Keycloak integration the backend must be Postgres![/]\n"
Expand Down

0 comments on commit 4256cdb

Please sign in to comment.