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> {
212212 }
213213}
214214
215- async function unmarkOrphan ( instanceId : string ) : Promise < void > {
215+ async function unMarkOrphan ( instanceId : string ) : Promise < void > {
216216 try {
217217 await untag ( instanceId , [ { Key : 'ghr:orphan' , Value : 'true' } ] ) ;
218218 logger . info ( `Runner '${ instanceId } ' untagged as orphan.` ) ;
@@ -248,7 +248,7 @@ async function terminateOrphan(environment: string): Promise<void> {
248248 if ( isOrphan ) {
249249 await terminateRunner ( runner . instanceId ) ;
250250 } else {
251- await unmarkOrphan ( runner . instanceId ) ;
251+ await unMarkOrphan ( runner . instanceId ) ;
252252 }
253253 } else {
254254 logger . info ( `Terminating orphan runner '${ runner . instanceId } '` ) ;
You can’t perform that action at this time.
0 commit comments