Skip to content

Commit

Permalink
fixed line mixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Saetch committed Jun 29, 2024
1 parent e05f13e commit 1f3b220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cluster/Node_cs/NodeBehavior.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ private static async Task<List<NodeResponse>> QueryAllNodesWithHashes(ApiConfig
string baseUrl = "http://"+config.COORDINATOR_SERVICE_URL+":"+config.PORT+"/organize/get_all_nodes";
Console.WriteLine("Making request to: " + baseUrl);
HttpResponseMessage response = await httpClient.SendAsync(new HttpRequestMessage(HttpMethod.Get, baseUrl));
Console.WriteLine("Received response for values from nodes: " + responseBody);
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine("Received response for values from nodes: " + responseBody);
//deserialize responseBody to List<NodeResponse>
var ret = ParseNodeResponsesFromResponse(responseBody);

Expand Down

0 comments on commit 1f3b220

Please sign in to comment.