File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ while (feedIterator.HasMoreResults)
75
75
FeedResponse < MyClass > feedResponse = await feedIterator .ReadNextAsync ();
76
76
77
77
// Store the ServerSideCumulativeMetrics object to aggregate values after all round trips
78
- metrics .Add (response .Diagnostics .GetQueryMetrics ());
78
+ metrics .Add (feedResponse .Diagnostics .GetQueryMetrics ());
79
79
}
80
80
81
81
// Aggregate values across trips for metrics of interest
@@ -108,7 +108,7 @@ while (feedIterator.HasMoreResults)
108
108
FeedResponse < MyClass > feedResponse = await feedIterator .ReadNextAsync ();
109
109
110
110
// Store the ServerSideCumulativeMetrics object to aggregate values after all round trips
111
- metrics .Add (response .Diagnostics .GetQueryMetrics ());
111
+ metrics .Add (feedResponse .Diagnostics .GetQueryMetrics ());
112
112
}
113
113
114
114
// Group metrics by partition key range id
You can’t perform that action at this time.
0 commit comments