File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lambdas/functions/control-plane/src/scale-runners Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ async function markOrphan(instanceId: string): Promise<void> {
212
212
}
213
213
}
214
214
215
- async function unmarkOrphan ( instanceId : string ) : Promise < void > {
215
+ async function unMarkOrphan ( instanceId : string ) : Promise < void > {
216
216
try {
217
217
await untag ( instanceId , [ { Key : 'ghr:orphan' , Value : 'true' } ] ) ;
218
218
logger . info ( `Runner '${ instanceId } ' untagged as orphan.` ) ;
@@ -248,7 +248,7 @@ async function terminateOrphan(environment: string): Promise<void> {
248
248
if ( isOrphan ) {
249
249
await terminateRunner ( runner . instanceId ) ;
250
250
} else {
251
- await unmarkOrphan ( runner . instanceId ) ;
251
+ await unMarkOrphan ( runner . instanceId ) ;
252
252
}
253
253
} else {
254
254
logger . info ( `Terminating orphan runner '${ runner . instanceId } '` ) ;
You can’t perform that action at this time.
0 commit comments