Skip to content

Commit

Permalink
Address review feedback
Browse files Browse the repository at this point in the history
Contributed on behalf of STMicroelectronics
  • Loading branch information
sgraband committed Aug 7, 2023
1 parent fd7c6a7 commit ac1bd2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsp-typescript-client/src/protocol/http-tsp-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { DataTreeEntry } from "../models/data-tree";
import { TspClient } from "./tsp-client";

/**
* Default implementation of the Trace Server Protocol client
* Http request implementation, using the RestClient helper, of the Trace Server Protocol client
*/
export class HttpTspClient implements TspClient {
private baseUrl: string;
Expand Down Expand Up @@ -360,7 +360,7 @@ export class HttpTspClient implements TspClient {
): Promise<TspClientResponse<GenericResponse<MarkerSet[]>>> {
const url =
this.baseUrl + "/experiments/" + expUUID + "/outputs/markerSets";
return RestClient.get(url, undefined);
return RestClient.get(url);
}

/**
Expand Down

0 comments on commit ac1bd2d

Please sign in to comment.