Skip to content

Commit bccdd88

Browse files
fixes lint warnings (#120)
1 parent ad3dcd7 commit bccdd88

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/shutdown_manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default class ShutdownManager {
5151
pipeline.get(key);
5252
});
5353
const instances = await pipeline.exec();
54-
return instances.map((instance: any) => {
54+
return instances.map((instance: string[]) => {
5555
return instance[1] == 'shutdown';
5656
});
5757
}
@@ -82,7 +82,7 @@ export default class ShutdownManager {
8282
pipeline.get(key);
8383
});
8484
const instances = await pipeline.exec();
85-
return instances.map((instance: any) => {
85+
return instances.map((instance: string[]) => {
8686
return instance[1] == 'isScaleDownProtected';
8787
});
8888
}

0 commit comments

Comments
 (0)