Skip to content
Snippets Groups Projects
Commit df403420 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Remove debug logger in getAvailableSourcesByPubkey()

parent e7dbaebe
No related branches found
No related tags found
1 merge request!1420[fix] Optimize access to sources by pubkey, using specific index
Pipeline #31643 failed
......@@ -470,26 +470,9 @@ export class FileDAL implements ServerDAO {
}
async getAvailableSourcesByPubkey(pubkey: string): Promise<HttpSource[]> {
const start = Date.now();
logger.debug(`Reading sources of pubkey ${pubkey}...`);
const [txAvailable, sources] = await Promise.all([
this.sindexDAL.getAvailableForPubkey(pubkey)
.then(res => {
logger.debug(
"Reading sources of pubkey %s in %s ms",
pubkey,
Date.now() - start);
return res;
}),
this.sindexDAL.getAvailableForPubkey(pubkey),
this.dividendDAL.getUDSources(pubkey)
.then(res => {
logger.debug(
"Reading UDs of pubkey %s in %s ms",
pubkey,
Date.now() - start);
return res;
})
]);
return sources
.map((d) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment