Skip to content

Commit ebc5afb

Browse files
authored
Update core-agent version to 1.5.0 (#785)
1 parent ac232a5 commit ebc5afb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/scout_apm/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def __init__(self):
221221
"core_agent_log_level": "info",
222222
"core_agent_permissions": 700,
223223
"core_agent_socket_path": "tcp://127.0.0.1:6590",
224-
"core_agent_version": "v1.4.0", # can be an exact tag name, or 'latest'
224+
"core_agent_version": "v1.5.0", # can be an exact tag name, or 'latest'
225225
"disabled_instruments": [],
226226
"download_url": "https://s3-us-west-1.amazonaws.com/scout-public-downloads/apm_core_agent/release", # noqa: B950
227227
"errors_batch_size": 5,

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ def terminate_core_agent_processes():
170170
for process in psutil.process_iter(["name"]):
171171
if process.name() == "core-agent":
172172
process.terminate()
173+
process.wait()
173174

174175

175176
# Make all timeouts shorter so that tests exercising them run faster.

0 commit comments

Comments
 (0)