You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Pankaj Kumar (JIRA)" <ji...@apache.org> on 2015/06/22 13:15:00 UTC

[jira] [Created] (THRIFT-3197) keepAliveTime is hard coded as 60 sec in TThreadPoolServer

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)