We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af7cff7 commit c23a478Copy full SHA for c23a478
ingest/settings.py
@@ -47,7 +47,7 @@ def DATABASE_WRITE_URL(self) -> str:
47
@computed_field
48
def DEPLOYMENT_ID(self) -> str:
49
commit_hash = subprocess.check_output(['git', 'rev-parse', 'HEAD']).decode('ascii').strip()
50
- return f"{environ.get('CDK_DEFAULT_ACCOUNT', 'UK')}/{commit_hash}"
+ return f"{environ.get('USER', 'UK')}/{commit_hash}"
51
52
model_config = SettingsConfigDict(
53
extra="ignore",
0 commit comments