Increased fetch size

This commit is contained in:
Volodymyr Babak 2021-08-03 14:39:23 +03:00
parent a3add4dc9b
commit 7d1a849047

View File

@ -113,7 +113,7 @@ public class BaseEdgeEventControllerTest extends AbstractControllerTest {
private List<EdgeEvent> findEdgeEvents(EdgeId edgeId) throws Exception { private List<EdgeEvent> findEdgeEvents(EdgeId edgeId) throws Exception {
return doGetTypedWithTimePageLink("/api/edge/" + edgeId.toString() + "/events?", return doGetTypedWithTimePageLink("/api/edge/" + edgeId.toString() + "/events?",
new TypeReference<PageData<EdgeEvent>>() { new TypeReference<PageData<EdgeEvent>>() {
}, new TimePageLink(4)).getData(); }, new TimePageLink(10)).getData();
} }
private Device constructDevice(String name, String type) { private Device constructDevice(String name, String type) {