Skip to content

Commit

Permalink
better log output
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronkvanmeerten committed Apr 19, 2024
1 parent b48193a commit a96232e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shutdown_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default class ShutdownManager {
const pipeline = this.redisClient.pipeline();
for (const instance of instanceDetails) {
const key = this.shutDownConfirmedKey(instance.instanceId);
ctx.logger.debug('Writing shutdown status', { key, status });
ctx.logger.debug('Writing shutdown confirmation', { key, status });
pipeline.set(key, status, 'EX', this.shutdownTTL);
}
await pipeline.exec();
Expand Down

0 comments on commit a96232e

Please sign in to comment.