Skip to content

Commit

Permalink
Merge pull request Azure#8 from FabianMeiswinkel/users/fabianm/RntbdM…
Browse files Browse the repository at this point in the history
…etricsToDiagnostics

Fixing build issue
  • Loading branch information
FabianMeiswinkel authored Sep 15, 2020
2 parents 8c585e0 + 90aeea4 commit b5d184b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1409,9 +1409,8 @@ public final void run() {
// * https://github.com/netty/netty/issues/3705
if (expiryTime - currentNanoTime < 0) {
this.onTimeout(removedTask);

} else {
if (!this.pendingAcquisitions.offer(removedTask)) {
if (!this.pool.pendingAcquisitions.offer(removedTask)) {
logger.error("Unexpected failure when returning the removed task"
+ " to pending acquisition queue. current size [{}]",
this.pool.pendingAcquisitions.size());
Expand Down

0 comments on commit b5d184b

Please sign in to comment.