fix #1672 set scroll
This commit is contained in:
parent
9acf643001
commit
4e6855111c
1 changed files with 2 additions and 1 deletions
|
@ -180,7 +180,8 @@ public class AdminBackupAction extends FessAdminAction {
|
|||
return asStream(filename).contentTypeOctetStream().stream(
|
||||
out -> {
|
||||
try (CurlResponse response =
|
||||
ComponentUtil.getCurlHelper().get("/" + index + "/_data").param("format", "json").execute()) {
|
||||
ComponentUtil.getCurlHelper().get("/" + index + "/_data").param("format", "json")
|
||||
.param("scroll", fessConfig.getIndexScrollSearchTimeout()).execute()) {
|
||||
out.write(response.getContentAsStream());
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue