From 5c1f430aebd0d5a3e29820420898608c3164085a Mon Sep 17 00:00:00 2001 From: Thomas Watson Date: Thu, 28 Nov 2024 15:27:49 +0100 Subject: [PATCH] [Debugger] Fix diagnostics schema - The root `message` property is not expected. - The probe version should be encoded in a `version` property - not a `probeVersion` property. --- utils/_context/_scenarios/endtoend.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/utils/_context/_scenarios/endtoend.py b/utils/_context/_scenarios/endtoend.py index 72cda50263..226b87050e 100644 --- a/utils/_context/_scenarios/endtoend.py +++ b/utils/_context/_scenarios/endtoend.py @@ -572,12 +572,6 @@ def pytest_sessionfinish(self, session, exitstatus): condition=context.library == "golang", ticket="APMS-12697", ), - _SchemaBug( - endpoint="/debugger/v1/diagnostics", - data_path="$[].content", - condition=context.library > "nodejs@4.48.0", - ticket="DEBUG-2864", - ), _SchemaBug( endpoint="/debugger/v1/diagnostics", data_path="$[].content[].debugger.diagnostics", @@ -617,12 +611,6 @@ def pytest_sessionfinish(self, session, exitstatus): condition=context.library == "golang", ticket="APMS-12697", ), - _SchemaBug( - endpoint="/api/v2/debugger", - data_path="$[].content", - condition=context.library > "nodejs@4.46.0", - ticket="DEBUG-2864", - ), ] self._test_schemas(session, interfaces.agent, agent_bugs)