[ 
https://issues.apache.org/jira/browse/THRIFT-3197?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

James E. King, III updated THRIFT-3197:
---------------------------------------
    Patch Info: Patch Available

> 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
>          Components: Java - Library
>            Reporter: Pankaj Kumar
>         Attachments: THRIFT-3197-V2.patch, THRIFT-3197.patch
>
>
> 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