Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #30 from rodamin/master
Browse files Browse the repository at this point in the history
Fixed KsonPool.writer() issue
  • Loading branch information
StaticDefaultTester2 authored Jan 15, 2020
2 parents e50e93b + f98f903 commit ea35d35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public synchronized KsonWriter writer() {
for (Thread thread : this.writerPools.keySet()) {
if (!thread.isAlive()) {
freeWriter = this.writerPools.get(thread);
this.contextPools.remove(thread);
this.writerPools.remove(thread);
break;
}
}
Expand Down

0 comments on commit ea35d35

Please sign in to comment.