Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 15ab5c9

Browse files
authored
fix(HTTPTransport): No retries will be made when trying to reach url and getting a timeout (#392)
1 parent 9166968 commit 15ab5c9

File tree

5 files changed

+45
-3
lines changed

5 files changed

+45
-3
lines changed

epsagon/trace_transports.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,6 @@ def send(self, trace):
5656
'POST',
5757
self.dest,
5858
body=to_json(trace.to_dict()),
59-
timeout=self.timeout
59+
timeout=self.timeout,
60+
retries=False
6061
)

scripts/run_acceptance_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
if [ -z $AWS_ACCESS_KEY_ID ] || [ -z $AWS_SECRET_ACCESS_KEY ]; then
33
echo "AWS credentials must be set in order to run acceptance tests"
44
exit 1
5-
else
5+
elif [ $TRAVIS_PYTHON_VERSION != "2.7" ]; then
66
npm install && export PATH=$(pwd)/node_modules/.bin:$PATH
77
./acceptance/run.sh $TRAVIS_BUILD_NUMBER $TRAVIS_PYTHON_VERSION
88
fi

scripts/run_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ret=`python -c 'import sys; print(0 if sys.version_info < (3, 5, 3) else 1)'`
44
excludes=''
55
if [ $ret -eq 0 ]; then
6-
pytest -vv --ignore-glob=*fastapi* --ignore-glob=*requests_event*
6+
pytest -vv --ignore-glob=*fastapi* --ignore-glob=*requests_event* --ignore-glob=*transports*
77
else
88
pytest -vv
99
fi

tests/test_trace.py

+11
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ def test_send_traces_sanity(wrapped_post):
582582
'collector',
583583
body=json.dumps(trace.to_dict()),
584584
timeout=epsagon.constants.SEND_TIMEOUT,
585+
retries=False,
585586
)
586587

587588

@@ -596,6 +597,7 @@ def test_send_traces_unicode(wrapped_post):
596597
'collector',
597598
body=json.dumps(trace.to_dict(), ensure_ascii=True),
598599
timeout=epsagon.constants.SEND_TIMEOUT,
600+
retries=False,
599601
)
600602

601603

@@ -628,6 +630,7 @@ def test_send_big_trace(wrapped_post):
628630
'collector',
629631
body=json.dumps(trace.to_dict()),
630632
timeout=epsagon.constants.SEND_TIMEOUT,
633+
retries=False,
631634
)
632635

633636

@@ -655,6 +658,7 @@ def test_strong_keys_not_trimmed(wrapped_post):
655658
'collector',
656659
body=json.dumps(trace.to_dict()),
657660
timeout=epsagon.constants.SEND_TIMEOUT,
661+
retries=False,
658662
)
659663

660664

@@ -677,6 +681,7 @@ def test_send_invalid_return_value(wrapped_post):
677681
'collector',
678682
body=json.dumps(trace.to_dict()),
679683
timeout=epsagon.constants.SEND_TIMEOUT,
684+
retries=False,
680685
)
681686

682687
def _assert_key_not_exist(data, ignored_key):
@@ -870,6 +875,7 @@ def test_whitelist_full_flow(wrapped_post):
870875
'collector',
871876
body=json.dumps(trace.to_dict()),
872877
timeout=epsagon.constants.SEND_TIMEOUT,
878+
retries=False,
873879
)
874880

875881
os.environ.pop('EPSAGON_ALLOWED_KEYS')
@@ -895,6 +901,7 @@ def test_metadata_field_too_big(wrapped_post):
895901
'collector',
896902
body=json.dumps(trace.to_dict()),
897903
timeout=epsagon.constants.SEND_TIMEOUT,
904+
retries=False,
898905
)
899906

900907

@@ -908,6 +915,7 @@ def test_send_traces_timeout(wrapped_post):
908915
'collector',
909916
body=json.dumps(trace.to_dict()),
910917
timeout=epsagon.constants.SEND_TIMEOUT,
918+
retries=False,
911919
)
912920

913921

@@ -921,6 +929,7 @@ def test_send_traces_post_error(wrapped_post):
921929
'collector',
922930
body=json.dumps(trace.to_dict()),
923931
timeout=epsagon.constants.SEND_TIMEOUT,
932+
retries=False,
924933
)
925934

926935

@@ -1360,6 +1369,7 @@ def test_event_with_datetime(wrapped_post):
13601369
'collector',
13611370
body=json.dumps(trace.to_dict(), cls=TraceEncoder),
13621371
timeout=epsagon.constants.SEND_TIMEOUT,
1372+
retries=False,
13631373
)
13641374

13651375
@mock.patch('urllib3.PoolManager.request', side_effect=urllib3.exceptions.TimeoutError)
@@ -1378,6 +1388,7 @@ def test_event_with_non_unicode_binary(wrapped_post):
13781388
'collector',
13791389
body=json.dumps(trace.to_dict(), cls=TraceEncoder),
13801390
timeout=epsagon.constants.SEND_TIMEOUT,
1391+
retries=False,
13811392
)
13821393

13831394
@mock.patch('urllib3.PoolManager.request')

tests/test_transports.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import time
2+
import pytest
3+
import urllib3
4+
from epsagon.trace_transports import HTTPTransport
5+
from epsagon.trace import (trace_factory)
6+
7+
8+
def test_httptransport_sanity(httpserver):
9+
collector_url = '/collector'
10+
httpserver.expect_request(collector_url).respond_with_data("success")
11+
http_transport = HTTPTransport(httpserver.url_for(collector_url), 'token')
12+
trace = trace_factory.get_or_create_trace()
13+
http_transport.send(trace)
14+
15+
16+
def test_httptransport_timeout():
17+
start_time = time.time()
18+
# non-routable IP address, will result in a timeout
19+
http_transport = HTTPTransport('http://10.255.255.1', 'token')
20+
trace = trace_factory.get_or_create_trace()
21+
22+
# This will make sure we get TimeoutError and not MaxRetryError
23+
with pytest.raises(urllib3.exceptions.TimeoutError):
24+
http_transport.send(trace)
25+
26+
duration = time.time() - start_time
27+
28+
# Making sure that an unreachable url will result in duration almost equal to the
29+
# timeout duration set
30+
assert http_transport.timeout < duration < http_transport.timeout + 0.3

0 commit comments

Comments
 (0)