We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0136b66 commit 54af6b8Copy full SHA for 54af6b8
spec/datadog/tracing/contrib/mongodb/client_spec.rb
@@ -105,6 +105,11 @@
105
end
106
107
108
+ # Our GHA Unit Tests run in docker containers, where "localhost" refers to the container itself.
109
+ # As a result, the secondary client (with host "localhost") cannot connect to the primary MongoDB
110
+ # service, causing the test to timeout while waiting for "primary server [to be] available in cluster".
111
+ # One solution is to pull a second MongoDB service and set the secondary client accordingly. However,
112
+ # given the large amount of services already being pulled, this spec remains skipped on GHA for now.
113
context 'secondary client', skip: ENV['BATCHED_TASKS'] do
114
around do |example|
115
without_warnings do
0 commit comments