Skip to content

Commit dcc3aea

Browse files
committed
Remove next_marker parameter as it wasn't being used
1 parent a7c5e76 commit dcc3aea

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

sdk/storage_blobs/src/service/operations/find_blobs_by_tags.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,20 @@ operation! {
88
FindBlobsByTags,
99
client: BlobServiceClient,
1010
expression: String,
11-
?next_marker: NextMarker,
12-
?max_results: MaxResults,
1311
?marker: NextMarker,
12+
?max_results: MaxResults,
1413
}
1514

1615
impl FindBlobsByTagsBuilder {
1716
pub fn into_stream(self) -> FindBlobsByTags {
18-
let make_request = move |next_marker: Option<NextMarker>| {
17+
let make_request = move |continuation: Option<NextMarker>| {
1918
let this = self.clone();
2019
let mut ctx = self.context.clone();
2120
async move {
2221
let mut url = this.client.url()?;
2322

2423
url.query_pairs_mut().append_pair("comp", "blobs");
25-
if let Some(next_marker) = next_marker.or(this.marker) {
24+
if let Some(next_marker) = continuation.or(this.marker) {
2625
next_marker.append_to_url_query(&mut url);
2726
}
2827
url.query_pairs_mut().append_pair("where", &this.expression);

0 commit comments

Comments
 (0)