File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/module-postgres-storage/src/storage Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
110110 }
111111
112112 private mapListCurrentConnectionsResponse ( result : SdkReportingDecoded ) : ListCurrentConnections {
113+ console . log ( result . sdks ) ;
113114 return {
114115 users : Number ( result . users ) ,
115116 sdks : [ ]
@@ -313,7 +314,6 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
313314 sdks : [ ]
314315 } ;
315316 }
316- console . log ( result ) ;
317317 return this . mapListCurrentConnectionsResponse ( result ) ;
318318 }
319319
@@ -362,7 +362,7 @@ export class PostgresReportStorageFactory implements storage.ReportStorageFactor
362362 );
363363` ;
364364 const params = [ { value : lt } ] ;
365- const result = await this . db . query ( { statement : query , params } ) ;
365+ await this . db . query ( { statement : query , params } ) ;
366366 }
367367
368368 async [ Symbol . asyncDispose ] ( ) {
You can’t perform that action at this time.
0 commit comments