mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-07 22:45:46 +01:00
refactor: use helpers.log
This commit is contained in:
@@ -339,7 +339,7 @@ async function sendMessage(uri, id, type, payload, attempts = 1) {
|
|||||||
throw new Error(String(body));
|
throw new Error(String(body));
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
winston.warn(`[activitypub/send] Could not send ${payload.type} to ${uri}; error: ${e.message}`);
|
ActivityPub.helpers.log(`[activitypub/send] Could not send ${payload.type} to ${uri}; error: ${e.message}`);
|
||||||
// add to retry queue
|
// add to retry queue
|
||||||
if (attempts < 12) { // stop attempting after ~2 months
|
if (attempts < 12) { // stop attempting after ~2 months
|
||||||
const timeout = (4 ** attempts) * 1000; // exponential backoff
|
const timeout = (4 ** attempts) * 1000; // exponential backoff
|
||||||
|
|||||||
Reference in New Issue
Block a user