Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeuz committed Jan 29, 2025
1 parent eeae06d commit b4c0af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class ApiClient {
this._stream.on('error', (err) => {
this._log.error(`Event stream error: ${err.message}`);
});
this._stream.on('reconnect', (err) => {
this._stream.on('reconnect', () => {
this._log.warn('Event stream is reconnecting');
});
this._stream.on('reconnect-success', () => {
Expand Down

0 comments on commit b4c0af8

Please sign in to comment.