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 6b5b58b commit 792b299Copy full SHA for 792b299
modules/module-postgres-storage/src/storage/PostgresReportStorageFactory.ts
@@ -110,10 +110,9 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
110
}
111
112
private mapListCurrentConnectionsResponse(result: SdkReportingDecoded): ListCurrentConnections {
113
- console.log(result.sdks);
114
return {
115
users: Number(result.users),
116
- sdks: []
+ sdks: result.sdks?.data || []
117
};
118
119
private async listConnectionsQuery(data: event_types.ListCurrentConnectionsRequest) {
0 commit comments