Fix prod detection

This commit is contained in:
Mustafa Gezen 2023-02-02 03:39:20 +01:00
parent faeda45001
commit 7c43d9b05c
Signed by untrusted user who does not match committer: mustafa
GPG Key ID: DCDF010D946438C1
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def get_env():
def is_prod():
return get_env() == "1"
return get_env() == "production"
def is_k8s():