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 f1244fd commit f88544fCopy full SHA for f88544f
modules/module-postgres-storage/src/storage/PostgresReportStorageFactory.ts
@@ -112,7 +112,7 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
112
private mapListCurrentConnectionsResponse(result: SdkReportingDecoded): ListCurrentConnections {
113
return {
114
users: Number(result.users),
115
- sdks: result.sdks.data
+ sdks: []
116
};
117
}
118
private async listConnectionsQuery(data: event_types.ListCurrentConnectionsRequest) {
@@ -313,6 +313,7 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
313
sdks: []
314
315
316
+ console.log(result);
317
return this.mapListCurrentConnectionsResponse(result);
318
319
0 commit comments