aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub/actors
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-05-11 15:02:53 +0200
committerChocobozzz <me@florianbigard.com>2023-05-11 15:03:47 +0200
commit823c34c07fc0df81110098ee1032e9d3ed70b662 (patch)
tree4d15bc0e09766552434ee50ad5f6098bd2f74ac4 /server/lib/activitypub/actors
parent81f14b911211be065448e92bcc253f470c5ff2a9 (diff)
downloadPeerTube-823c34c07fc0df81110098ee1032e9d3ed70b662.tar.gz
PeerTube-823c34c07fc0df81110098ee1032e9d3ed70b662.tar.zst
PeerTube-823c34c07fc0df81110098ee1032e9d3ed70b662.zip
Fix reset sequelize instance
Diffstat (limited to 'server/lib/activitypub/actors')
-rw-r--r--server/lib/activitypub/actors/updater.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/activitypub/actors/updater.ts b/server/lib/activitypub/actors/updater.ts
index 73bdf1edc..5a92e7a22 100644
--- a/server/lib/activitypub/actors/updater.ts
+++ b/server/lib/activitypub/actors/updater.ts
@@ -52,11 +52,11 @@ export class APActorUpdater {
52 logger.info('Remote account %s updated', this.actorObject.url) 52 logger.info('Remote account %s updated', this.actorObject.url)
53 } catch (err) { 53 } catch (err) {
54 if (this.actor !== undefined) { 54 if (this.actor !== undefined) {
55 resetSequelizeInstance(this.actor) 55 await resetSequelizeInstance(this.actor)
56 } 56 }
57 57
58 if (this.accountOrChannel !== undefined) { 58 if (this.accountOrChannel !== undefined) {
59 resetSequelizeInstance(this.accountOrChannel) 59 await resetSequelizeInstance(this.accountOrChannel)
60 } 60 }
61 61
62 // This is just a debug because we will retry the insert 62 // This is just a debug because we will retry the insert