Skip to content

Commit 8bb5589

Browse files
committed
Fixing created_at
1 parent be451a5 commit 8bb5589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/services/deployment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def build_runtime_env_vars(
8383
"DEVPUSH_PROJECT_ID": project.id,
8484
"DEVPUSH_ENVIRONMENT": environment.get("slug") or deployment.environment_id,
8585
"DEVPUSH_DEPLOYMENT_ID": deployment.id,
86-
"DEVPUSH_DEPLOYMENT_CREATED_AT": deployment.created_at.isoformat(),
86+
"DEVPUSH_DEPLOYMENT_CREATED_AT": deployment.created_at.isoformat() + "Z",
8787
"DEVPUSH_GIT_PROVIDER": "github",
8888
"DEVPUSH_GIT_REPO": deployment.repo_full_name,
8989
"DEVPUSH_GIT_REF": deployment.branch,

0 commit comments

Comments
 (0)