Skip to content

Commit

Permalink
tests/system: ignore intake response code
Browse files Browse the repository at this point in the history
  • Loading branch information
axw committed Nov 27, 2019
1 parent d83ebe4 commit 94192d6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/system/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,8 +662,7 @@ def test_self_profiling(self):
def create_load():
payload_path = self.get_payload_path("transactions_spans.ndjson")
with open(payload_path) as f:
r = requests.post(self.intake_url, data=f, headers={'content-type': 'application/x-ndjson'})
assert r.status_code == 202, r.status_code
requests.post(self.intake_url, data=f, headers={'content-type': 'application/x-ndjson'})

# Wait for profiling to begin, and then start sending data
# to the server to create some CPU load.
Expand Down

0 comments on commit 94192d6

Please sign in to comment.