Skip to content

Commit

Permalink
remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Viren Baraiya committed Jun 20, 2017
1 parent 76d5132 commit d4b7ef8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,9 @@ public class RedisQueues implements Closeable {
* @param shardSupplier Provider for the shards for the queues created
* @param unackTime Time in millisecond within which a message needs to be acknowledged by the client, after which the message is re-queued.
* @param unackHandlerIntervalInMS Time in millisecond at which the un-acknowledgement processor runs
* @param dynoOpThreadCount no. of threads that are used to make the calls to dyno. All the queues share the threadpool executor created with this count.
*/
public RedisQueues(JedisCommands quorumConn, JedisCommands nonQuorumConn, String redisKeyPrefix, ShardSupplier shardSupplier, int unackTime,
int unackHandlerIntervalInMS, int dynoOpThreadCount) {
int unackHandlerIntervalInMS) {

this.quorumConn = quorumConn;
this.nonQuorumConn = nonQuorumConn;
Expand Down

0 comments on commit d4b7ef8

Please sign in to comment.