Skip to content

Commit f88544f

Browse files
ts-codecs
1 parent f1244fd commit f88544f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/module-postgres-storage/src/storage/PostgresReportStorageFactory.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
112112
private mapListCurrentConnectionsResponse(result: SdkReportingDecoded): ListCurrentConnections {
113113
return {
114114
users: Number(result.users),
115-
sdks: result.sdks.data
115+
sdks: []
116116
};
117117
}
118118
private async listConnectionsQuery(data: event_types.ListCurrentConnectionsRequest) {
@@ -313,6 +313,7 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
313313
sdks: []
314314
};
315315
}
316+
console.log(result);
316317
return this.mapListCurrentConnectionsResponse(result);
317318
}
318319

0 commit comments

Comments
 (0)