Skip to content
Merged
Prev Previous commit
Next Next commit
PR suggestions
  • Loading branch information
joao-r-reis committed Sep 19, 2024
commit fc3a6d0980df16b80b1ae4d85f803a02b858f851
1 change: 1 addition & 0 deletions doc/features/request-tracker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ The full API doc is available [here](https://docs.datastax.com/en/drivers/csharp
- **OnNodeStartAsync** - that is triggered when the node request starts
- **OnNodeSuccessAsync** - that is triggered when the node level request finishes successfully.
- **OnNodeErrorAsync** - that is triggered when the node request finishes unsuccessfully.
- **OnNodeAbortedAsync** - that is triggered when the node request is aborted (e.g. pending speculative execution).
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ static async Task Main(string[] args)
if (forecastResponse.IsSuccessStatusCode)
{
var content = await forecastResponse.Content.ReadAsStringAsync(cts.Token).ConfigureAwait(false);
//var forecast = JsonSerializer.DeserializeAsync<WeatherForecast>(content).ConfigureAwait(false);
await Console.Out.WriteLineAsync("TraceId: " + Activity.Current?.TraceId + Environment.NewLine + content + Environment.NewLine).ConfigureAwait(false);
}
}
Expand Down