Skip to content

Commit

Permalink
fix: Use fixed queue names for jingle and role manager queues. (#1084)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev authored Apr 28, 2023
1 parent 639b043 commit f84f6a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class JingleSession(
private val incomingIqQueue = PacketQueue<JingleIQ>(
Integer.MAX_VALUE,
true,
"jingle-iq-queue-$sid",
"jingle-iq-queue",
{
doProcessIq(it)
return@PacketQueue true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ sealed class ChatRoomRoleManager(
protected val queue = PacketQueue<Runnable>(
Integer.MAX_VALUE,
false,
"chat-room-role-manager-queue-${chatRoom.roomJid}",
"chat-room-role-manager-queue",
{
it.run()
return@PacketQueue true
Expand Down

0 comments on commit f84f6a5

Please sign in to comment.