Skip to content

Commit 89894fc

Browse files
committed
should not uri encode scroll id now that we are using POST fixes #326
1 parent 512fc56 commit 89894fc

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Nest/ElasticClient-Scroll.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public IQueryResponse<T> Scroll<T>(string scrollTime, string scrollId) where T :
1919
scrollId.ThrowIfNullOrEmpty("scrollId");
2020
scrollTime.ThrowIfNullOrEmpty("scrollTime");
2121

22-
scrollId = Uri.EscapeDataString(scrollId);
2322
scrollTime = Uri.EscapeDataString(scrollTime);
2423

2524
var path = "_search/scroll?scroll={0}".F(scrollTime);

0 commit comments

Comments
 (0)