Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ failPoint:
closeConnection: false
blockConnection: true
blockTimeMS: 500
appName: "cmap-format-tests"
poolOptions:
maxConnecting: 1
# gives opportunity for the checkout in thread2 to establish a new connection, which it must not do until thread1 establishes one
maxPoolSize: 2
waitQueueTimeoutMS: 5000
appName: "cmap-format-tests"
operations:
- name: ready
# thread1 exists to consume the single permit to open a connection,
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ failPoint:
closeConnection: false
blockConnection: true
blockTimeMS: 800
appName: "cmap-format-tests"
poolOptions:
maxPoolSize: 10
waitQueueTimeoutMS: 5000
appName: "cmap-format-tests"
operations:
- name: ready
# start 3 threads
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,14 @@ failPoint:
closeConnection: false
blockConnection: true
blockTimeMS: 750
appName: "cmap-format-tests"
poolOptions:
maxPoolSize: 10
# Drivers that limit connection establishment by waitQueueTimeoutMS may skip
# this test. While waitQueueTimeoutMS is technically not supposed to limit establishment time,
# it will soon be deprecated, so it is easier for those drivers to just skip this test.
waitQueueTimeoutMS: 50
appName: "cmap-format-tests"
operations:
- name: ready
# start creating two connections simultaneously.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ failPoint:
closeConnection: false
blockConnection: true
blockTimeMS: 500
appName: "cmap-format-tests"
poolOptions:
# allows both thread1 and the background thread to start opening connections concurrently
minPoolSize: 2
# gives opportunity for the checkout in thread2 to open a new connection, which it must not do nonetheless
maxPoolSize: 3
waitQueueTimeoutMS: 5000
appName: "cmap-format-tests"
operations:
- name: ready
# thread1 exists to hold on one of the two permits to open a connection (the other one is initially held by the background thread),
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ failPoint:
closeConnection: false
blockConnection: true
blockTimeMS: 750
appName: "cmap-format-tests"
poolOptions:
maxConnecting: 2
maxPoolSize: 10
waitQueueTimeoutMS: 5000
appName: "cmap-format-tests"
operations:
- name: ready
# check out a connection and hold on to it.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ failPoint:
closeConnection: false
blockConnection: true
blockTimeMS: 10000
appName: "cmap-format-tests"
poolOptions:
minPoolSize: 0
appName: "cmap-format-tests"
operations:
- name: ready
- name: start
Expand Down
Loading