We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b6bcc commit 43dd2bdCopy full SHA for 43dd2bd
airbyte-commons-server/src/main/java/io/airbyte/commons/server/handlers/ConnectionsHandler.java
@@ -1540,6 +1540,10 @@ public void backfillConnectionEvents(final ConnectionEventsBackfillRequestBody c
1540
}
1541
1542
public ConnectionEventListMinimal listConnectionEventsMinimal(ConnectionEventsListMinimalRequestBody requestBody) throws IOException {
1543
+ if (requestBody.getWorkspaceId() == null) {
1544
+ return new ConnectionEventListMinimal();
1545
+ }
1546
+
1547
// Get all connection IDs for the workspace using the lightweight method
1548
final List<UUID> connectionIds = connectionService.listConnectionIdsForWorkspace(requestBody.getWorkspaceId());
1549
0 commit comments