Skip to content

Commit

Permalink
Fixes #7548 - Interrupt flag is not always cleared in between request…
Browse files Browse the repository at this point in the history
…s. (#7563) (#7773)

Now clearing the interrupt flag.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
(cherry picked from commit 7b648f6)
  • Loading branch information
sbordet committed Mar 23, 2022
1 parent df14e16 commit 036cbe8
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -412,6 +412,11 @@ public void run()
{
LOG.warn("Unable to run task", e);
}
finally
{
// Clear any interrupted status.
Thread.interrupted();
}
}
}
finally
Expand Down

0 comments on commit 036cbe8

Please sign in to comment.