Skip to content

Commit 41a4303

Browse files
authored
Merge branch 'master' into remove-elasticsearch-async
2 parents e8ce548 + a562dd9 commit 41a4303

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/configuration.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ When set to false, the agent will not collect any data, nor start any background
135135
[options="header"]
136136
|============
137137
| Environment | Django/Flask | Default
138-
| `ELASTIC_APM_RECORDING` | `RECORDING` | `false`
138+
| `ELASTIC_APM_RECORDING` | `RECORDING` | `true`
139139
|============
140140

141141
Enable or disable recording of events.

scripts/run-tests.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ if "%VERSION%" == "2.7" set IGNORE_PYTHON3_WITH_PYTHON2=--ignore-glob="*\py3_*.p
1515

1616
set PYTEST_JUNIT="--junitxml=.\tests\python-agent-junit.xml"
1717
if "%ASYNCIO%" == "true" (
18-
call %PYTHON%\python.exe -m pytest %PYTEST_JUNIT% %IGNORE_PYTHON3_WITH_PYTHON2% --cov --cov-context=test --cov-branch --cov-config=setup.cfg -m "not integrationtest"
18+
%PYTHON%\python.exe -m pytest %PYTEST_JUNIT% %IGNORE_PYTHON3_WITH_PYTHON2% --cov --cov-context=test --cov-branch --cov-config=setup.cfg -m "not integrationtest" || exit /b 1
1919
)
2020
if "%ASYNCIO%" == "false" (
21-
call %PYTHON%\python.exe -m pytest %PYTEST_JUNIT% --ignore-glob="*\asyncio*\*" %IGNORE_PYTHON3_WITH_PYTHON2% --cov --cov-context=test --cov-branch --cov-config=setup.cfg -m "not integrationtest"
21+
%PYTHON%\python.exe -m pytest %PYTEST_JUNIT% --ignore-glob="*\asyncio*\*" %IGNORE_PYTHON3_WITH_PYTHON2% --cov --cov-context=test --cov-branch --cov-config=setup.cfg -m "not integrationtest" || exit /b 1
2222
)
2323
call %PYTHON%\python.exe setup.py bdist_wheel

0 commit comments

Comments
 (0)