Skip to content

Commit

Permalink
[CLOUDS-4587] context is undefined, use this.context
Browse files Browse the repository at this point in the history
  • Loading branch information
ava-silver committed Apr 15, 2024
1 parent 978cfdf commit f74919f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure/blobs_logs_monitoring/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class HTTPClient {
promises.push(this.sendWithRetry(batches[i]));
}
return await Promise.all(
promises.map(p => p.catch(e => context.log.error(e)))
promises.map(p => p.catch(e => this.context.log.error(e)))
);
}

Expand Down

0 comments on commit f74919f

Please sign in to comment.