Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
Issue: BB-632
  • Loading branch information
benzekrimaha committed Dec 12, 2024
1 parent e78d549 commit 22171f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/replication/tasks/ReplicateObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ class ReplicateObject extends BackbeatTask {
};
return this.backbeatSource.getMetadata(params, (err, blob) => {
if (err) {
err.origin = 'source';
err.origin = 'source'; // eslint-disable-line no-param-reassign
log.error('error getting metadata blob from S3', {
method: 'ReplicateObject._refreshSourceEntry',
error: err,
Expand Down

0 comments on commit 22171f5

Please sign in to comment.