forked from eclipse-cdt-cloud/tsp-typescript-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an endpoint for closing an experiment
With this it's possible to close an experiment on the server. Upon reception of the command the server can dispose allocated resources hence the client doesn't need them anymore. This change follows the TSP update provided by: eclipse-cdt-cloud/trace-server-protocol#95 Signed-off-by: Bernd Hufmann <[email protected]>
- Loading branch information
Showing
4 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
tsp-typescript-client/fixtures/tsp-client/close-experiment-0.json
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "kernel", | ||
"UUID": "22222222-2222-2222-2222-222222222222", | ||
"nbEvents": 0, | ||
"start": 0, | ||
"end": 0, | ||
"indexingStatus": "CLOSED", | ||
"traces": [ | ||
{ | ||
"name": "kernel", | ||
"path": "/path/kernel", | ||
"UUID": "11111111-1111-1111-1111-111111111111", | ||
"nbEvents": 0, | ||
"start": 0, | ||
"end": 0, | ||
"indexingStatus": "CLOSED" | ||
} | ||
] | ||
} |
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
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
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