feat: add debug endpoint for single tailnet (#10485)

This commit is contained in:
Colin Adler
2023-11-13 17:14:12 -06:00
committed by GitHub
parent f4de2b64ec
commit e0afee1b85
9 changed files with 88 additions and 1 deletions

View File

@ -352,7 +352,8 @@ func assertProduce(t *testing.T, comment SwaggerComment) {
(comment.router == "/workspaceagents/me/startup" && comment.method == "post") ||
(comment.router == "/workspaceagents/me/startup/logs" && comment.method == "patch") ||
(comment.router == "/licenses/{id}" && comment.method == "delete") ||
(comment.router == "/debug/coordinator" && comment.method == "get") {
(comment.router == "/debug/coordinator" && comment.method == "get") ||
(comment.router == "/debug/tailnet" && comment.method == "get") {
return // Exception: HTTP 200 is returned without response entity
}