-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "[Debugger] Fix diagnostics schema"
This reverts commit 5c1f430.
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -572,6 +572,12 @@ def pytest_sessionfinish(self, session, exitstatus): | |
condition=context.library == "golang", | ||
ticket="APMS-12697", | ||
), | ||
_SchemaBug( | ||
endpoint="/debugger/v1/diagnostics", | ||
data_path="$[].content", | ||
condition=context.library > "[email protected]", | ||
ticket="DEBUG-2864", | ||
), | ||
_SchemaBug( | ||
endpoint="/debugger/v1/diagnostics", | ||
data_path="$[].content[].debugger.diagnostics", | ||
|
@@ -611,6 +617,12 @@ def pytest_sessionfinish(self, session, exitstatus): | |
condition=context.library == "golang", | ||
ticket="APMS-12697", | ||
), | ||
_SchemaBug( | ||
endpoint="/api/v2/debugger", | ||
data_path="$[].content", | ||
condition=context.library > "[email protected]", | ||
ticket="DEBUG-2864", | ||
), | ||
] | ||
self._test_schemas(session, interfaces.agent, agent_bugs) | ||
|
||
|