Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1483b42

Browse files
authoredMar 6, 2023
fix(provisionerd): emit workspace build transition in lower case (#6455)
1 parent e78c272 commit 1483b42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎provisionerd/runner/runner.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ func New(
124124
slog.F("workspace_id", build.Metadata.WorkspaceId),
125125
slog.F("workspace_name", build.Metadata.WorkspaceName),
126126
slog.F("workspace_owner", build.Metadata.WorkspaceOwner),
127-
slog.F("workspace_transition", build.Metadata.WorkspaceTransition.String()),
127+
slog.F("workspace_transition", strings.ToLower(build.Metadata.WorkspaceTransition.String())),
128128
)
129129
}
130130

0 commit comments

Comments
 (0)
Failed to load comments.