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 2558e93 commit bf2a622Copy full SHA for bf2a622
ddtrace/contrib/pylibmc/addrs.py
@@ -3,6 +3,8 @@
3
translate_server_specs = None
4
5
try:
6
+ # NOTE: we rely on an undocumented method to parse addresses,
7
+ # so be a bit defensive and don't assume it exists.
8
from pylibmc.client import translate_server_specs
9
except ImportError:
10
pass
tests/contrib/flask_cache/test_wrapper_safety.py
@@ -228,4 +228,5 @@ def test_memcached_cache_tracing_with_a_wrong_connection(self):
228
eq_(span.meta[net.TARGET_HOST], 'localhost')
229
eq_(span.meta[net.TARGET_PORT], '22230')
230
231
- # pylibmc raises an exception, memcached doesn't, so don't test that.
+ # the pylibmc backend raises an exception and memcached backend does
232
+ # not, so don't test anything about the status.
0 commit comments