modify nesting worker wait queue signal time fron 1s to 10ms

This commit is contained in:
obdev
2023-06-05 09:20:59 +00:00
committed by ob-robot
parent e753c9d116
commit f4ec8ff4c5

View File

@ -35,7 +35,7 @@ class ObResourceGroup;
static const int64_t WORKER_CHECK_PERIOD = 500L;
static const int64_t REQUEST_WAIT_TIME = 10 * 1000L;
static const int64_t NESTING_REQUEST_WAIT_TIME = 1 * 1000 * 1000L;
static const int64_t NESTING_REQUEST_WAIT_TIME = 10 * 1000L;
// Quick Queue Priorities
enum { QQ_HIGH = 0, QQ_NORMAL, QQ_LOW, QQ_MAX_PRIO };