Skip to content

Commit 4f7c97a

Browse files
committed
Fix env vars
1 parent f037c59 commit 4f7c97a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

processor/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
KC_HOSTNAME = os.getenv('KC_HOSTNAME', "keycloak:8443")
1313
KC_REALM_NAME = os.getenv('KC_REALM_NAME', "kommonitor-demo")
1414
KC_HOSTNAME_PATH = os.getenv('KC_HOSTNAME_PATH', "")
15-
KC_URL_PROTOCOL = os.getenv('KC_PROTOCOL', "https")
15+
KC_URL_PROTOCOL = os.getenv('KC_URL_PROTOCOL', "https")
1616

1717

1818
class KomMonitorIntrospectTokenValidator(IntrospectTokenValidator):

processor/process/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class KommonitorProcessConfig:
3434
KC_CLIENT_SECRET = os.getenv('KC_CLIENT_SECRET', "processor-secret")
3535
KC_TARGET_CLIENT_ID = os.getenv('KC_TARGET_CLIENT_ID', "kommonitor-data-management")
3636
KC_HOSTNAME = os.getenv('KC_HOSTNAME', "keycloak:8443")
37-
KC_URL_PROTOCOL = os.getenv('KC_PROTOCOL', "https")
37+
KC_URL_PROTOCOL = os.getenv('KC_URL_PROTOCOL', "https")
3838
KC_REALM_NAME = os.getenv('KC_REALM_NAME', "kommonitor-demo")
3939
KC_HOSTNAME_PATH = os.getenv('KC_HOSTNAME_PATH', "")
4040
KOMMONITOR_DATA_MANAGEMENT_URL = os.getenv('KOMMONITOR_DATA_MANAGEMENT_URL', "http://localhost:8085/management/")

0 commit comments

Comments
 (0)