Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Apr 18, 2024
1 parent 4d59958 commit 018e0ca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CountItems/CountMaster.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@ class CountMaster {
}
return next();
}),
next => this.metrics.start(next),
next => {
this.metrics.start(),

Check failure on line 40 in CountItems/CountMaster.js

View workflow job for this annotation

GitHub Actions / tests

Expected an assignment or function call and instead saw an expression

Check failure on line 40 in CountItems/CountMaster.js

View workflow job for this annotation

GitHub Actions / tests

Unexpected use of comma operator
this.log.info('metrics server started', {
port: 8003,
});
return next();
},
next => this.manager.setup(next),
next => this.client.getBucketInfos(this.log, (err, bucketList) => {
if (err) {
Expand Down

0 comments on commit 018e0ca

Please sign in to comment.