Skip to content

Commit

Permalink
fix: silence retries
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Jan 8, 2025
1 parent 8616350 commit 5210232
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ private ItemHolder<K, V, Ctx, UserData> addTicket0(K key, ItemTicket<K, V, Ctx>
synchronized (holder) {
if (!holder.isOpen()) {
// holder got removed before we had chance to add a ticket to it, retry
System.out.println(String.format("Retrying addTicket0(%s, %s)", key, ticket));
// System.out.println(String.format("Retrying addTicket0(%s, %s)", key, ticket));
continue;
}
holder.busyRefCounter().incrementRefCount();
Expand Down

0 comments on commit 5210232

Please sign in to comment.