Skip to content

Commit 538216b

Browse files
committed
broke the build, missing *Async suffix:
1 parent 3336eec commit 538216b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Nest/ConvenienceExtensions/ScrollExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static IEmptyResponse ClearScroll(this IElasticClient client, string scro
5656
/// <param name="selector">Specify the scroll id as well as request specific configuration</param>
5757
public static Task<IEmptyResponse> ClearScrollAsync(this IElasticClient client, string scrollId)
5858
{
59-
return client.ClearScroll(s => s.ScrollId(scrollId));
59+
return client.ClearScrollAsync(s => s.ScrollId(scrollId));
6060
}
6161
}
6262
}

0 commit comments

Comments
 (0)