Skip to content

Commit 454f6f7

Browse files
committed
test/rgw/notifications: allow http server to buffer more requests
python doc: https://docs.python.org/3/library/socketserver.html#socketserver.ThreadingMixIn say tha the default is 5 Fixes: https://tracker.ceph.com/issues/66033 Signed-off-by: Yuval Lifshitz <[email protected]>
1 parent 7aec001 commit 454f6f7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/test/rgw/bucket_notification/test_bn.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ def __init__(self, addr, delay=0, cloudevents=False):
201201
self.delay = delay
202202
self.cloudevents = cloudevents
203203
self.addr = addr
204+
self.request_queue_size = 100
204205
self.lock = threading.Lock()
205206
ThreadingHTTPServer.__init__(self, addr, HTTPPostHandler)
206207
log.info('http server created on %s', self.addr)

0 commit comments

Comments
 (0)