Passed sorting to next pageable request from cosmos page request (#461)

This commit is contained in:
Kushagra Thapar 2019-12-16 13:05:55 -08:00 коммит произвёл GitHub
Родитель 797fe3ef51
Коммит 672876f3da
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -59,7 +59,7 @@ public class CosmosPageRequest extends PageRequest {
@Override
public Pageable next() {
return new CosmosPageRequest(this.offset + (long) this.getPageSize(),
this.getPageNumber() + 1, getPageSize(), this.requestContinuation);
this.getPageNumber() + 1, getPageSize(), this.requestContinuation, getSort());
}
@Override