Skip to content

Commit eccf40a

Browse files
committed
changed " to '
1 parent fcea1c7 commit eccf40a

File tree

1 file changed

+1
-1
lines changed
  • lambdas/functions/control-plane/src/scale-runners

1 file changed

+1
-1
lines changed

lambdas/functions/control-plane/src/scale-runners/scale-up.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export async function isJobQueued(githubInstallationClient: Octokit, payload: Ac
148148
});
149149
metricGitHubAppRateLimit(jobForWorkflowRun.headers);
150150
isQueued = jobForWorkflowRun.data.status === 'queued';
151-
logger.debug(`The job ${payload.id} is${isQueued ? " " : "not"} queued`);
151+
logger.debug(`The job ${payload.id} is${isQueued ? ' ' : 'not'} queued`);
152152
} else {
153153
throw Error(`Event ${payload.eventType} is not supported`);
154154
}

0 commit comments

Comments
 (0)