Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions components/ws-manager-bridge/src/bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -518,12 +518,12 @@ export class WorkspaceManagerBridge implements Disposable {
instance.stoppingTime &&
durationLongerThanSeconds(Date.parse(instance.stoppingTime), 10))
) {
log.info("Logging to validate #12902. Should mark as stopped in database.", {
instanceId,
workspaceId: instance.workspaceId,
installation,
phase,
});
log.info(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting that our typechecking is not catching these..

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Both are correct, type-wise and semantically. 🤷

{ instanceId, workspaceId: instance.workspaceId },
"Logging to validate #12902. Should mark as stopped in database.",
{ installation },
{ phase },
);
}
log.debug({ instanceId }, "Skipping instance", {
phase: instance.status.phase,
Expand Down