Skip to content

Commit bf4ccd7

Browse files
committed
Fix EmptyAPIResponses: add empty bool & domains
1 parent b4199a4 commit bf4ccd7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

agent_api/src/test/java/utils/EmptyAPIResponses.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212

1313
public class EmptyAPIResponses {
1414
public final static APIResponse emptyAPIResponse = new APIResponse(
15-
true, "", UnixTimeMS.getUnixTimeMS(), List.of(), List.of(), List.of(), true, false
15+
true, "", UnixTimeMS.getUnixTimeMS(), List.of(), List.of(), List.of(), false, null,true, false
1616
);
1717
public final static ReportingApi.APIListsResponse emptyAPIListsResponse = new ReportingApi.APIListsResponse(
1818
List.of(), List.of(), List.of(), null, null, List.of()
1919
);
2020
public static void setEmptyConfigWithEndpointList(List<Endpoint> endpoints) {
2121
ServiceConfigStore.updateFromAPIResponse(new APIResponse(
22-
true, "", getUnixTimeMS(), endpoints, List.of(), List.of(), true, false
22+
true, "", getUnixTimeMS(), endpoints, List.of(), List.of(), false, null, true, false
2323
));
2424
}
2525
}

0 commit comments

Comments
 (0)