This property sets the maximum queue size of the BlockingQueue implementation.
If you set this to -1 then SynchronousQueue will be used, otherwise a positive value will be used with LinkedBlockingQueue.
So I set maxQueueSize to -1 and expect that if there is no thread to remove the job from queue, the caller would block. Instead Hystrix throws RejectedExecutionException. How can I configure this behavior to instead have the caller blocked?
Thanks
Monmohan