Skip to content

Commit

Permalink
set meetme control limit to 500
Browse files Browse the repository at this point in the history
fix logger statement in CallImpl
  • Loading branch information
rlsutton1 committed Sep 12, 2017
1 parent 8eb6cff commit 4f41526
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/asteriskjava/pbx/CallImpl.java
Expand Up @@ -868,7 +868,7 @@ public Channel getOperandChannel(OperandChannel operand)
}
if (channel == null)
{
Exception e = new Exception("failed to get channel for {}" + operand);
Exception e = new Exception("failed to get channel for " + operand);
logger.warn(e, e);
}
return channel;
Expand Down
Expand Up @@ -80,7 +80,7 @@ public enum AsteriskPBX implements PBX, ChannelHangupListener
private boolean muteSupported;
private boolean bridgeSupport;

private static final int MAX_MEETME_ROOMS = 50;
private static final int MAX_MEETME_ROOMS = 500;

private LiveChannelManager liveChannels;

Expand Down

0 comments on commit 4f41526

Please sign in to comment.