Skip to content

Commit

Permalink
0003867: Increase default of max data to route
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jan 29, 2019
1 parent 1e7fa74 commit 6b1454f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -41,7 +41,7 @@ public class Channel implements Serializable {

private int maxBatchToSend = 100;

private int maxDataToRoute = 10000;
private int maxDataToRoute = 500000;

private BigDecimal maxKBytesPerSecond = BigDecimal.ZERO;

Expand Down
Expand Up @@ -100,7 +100,7 @@ protected void createDefaultChannels() {
updatedDefaultChannels.put(Constants.CHANNEL_HEARTBEAT,
new Channel(Constants.CHANNEL_HEARTBEAT, 2, 100, 100, true, 0, false));
updatedDefaultChannels.put(Constants.CHANNEL_DEFAULT,
new Channel(Constants.CHANNEL_DEFAULT, 99999, 1000, 100, true, 0, false));
new Channel(Constants.CHANNEL_DEFAULT, 500000, 1000, 100, true, 0, false));
updatedDefaultChannels.put(Constants.CHANNEL_DYNAMIC,
new Channel(Constants.CHANNEL_DYNAMIC, 99999, 1000, 100, true, 0, false));

Expand Down

0 comments on commit 6b1454f

Please sign in to comment.