Pankaj Kumar created THRIFT-3197:
------------------------------------

             Summary: keepAliveTime is hard coded as 60 sec in TThreadPoolServer
                 Key: THRIFT-3197
                 URL: https://issues.apache.org/jira/browse/THRIFT-3197
             Project: Thrift
          Issue Type: Bug
            Reporter: Pankaj Kumar


While creating ThreadPoolExecutor in TThreadPoolServer, keepAliveTime is hard 
coded as 60 sec.

{code}
 private static ExecutorService createDefaultExecutorService(Args args) {
    SynchronousQueue<Runnable> executorQueue =
      new SynchronousQueue<Runnable>();
    return new ThreadPoolExecutor(args.minWorkerThreads,
                                  args.maxWorkerThreads,
                                  60,
                                  TimeUnit.SECONDS,
                                  executorQueue);
  }

{code}

It should be "args.stopTimeoutVal"



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to