summaryrefslogtreecommitdiff
path: root/packages/backend/src/queue/processors
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-01-03 09:03:04 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-01-03 09:03:04 +0900
commit4d0859ce7f33a02bc7242c8a9f22ce253ff9f7c0 (patch)
tree2c1acf0b050e67bfc389a2358719d51177a27182 /packages/backend/src/queue/processors
parentdrop lastCommunicatedAt of instance (diff)
downloadsharkey-4d0859ce7f33a02bc7242c8a9f22ce253ff9f7c0.tar.gz
sharkey-4d0859ce7f33a02bc7242c8a9f22ce253ff9f7c0.tar.bz2
sharkey-4d0859ce7f33a02bc7242c8a9f22ce253ff9f7c0.zip
drop latestStatus of instance
Diffstat (limited to 'packages/backend/src/queue/processors')
-rw-r--r--packages/backend/src/queue/processors/DeliverProcessorService.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/backend/src/queue/processors/DeliverProcessorService.ts b/packages/backend/src/queue/processors/DeliverProcessorService.ts
index 571b9e9045..fcff3a0e2a 100644
--- a/packages/backend/src/queue/processors/DeliverProcessorService.ts
+++ b/packages/backend/src/queue/processors/DeliverProcessorService.ts
@@ -85,7 +85,6 @@ export class DeliverProcessorService {
// Update stats
this.federatedInstanceService.registerOrFetchInstanceDoc(host).then(i => {
this.instancesRepository.update(i.id, {
- latestStatus: 200,
isNotResponding: false,
});
@@ -101,7 +100,6 @@ export class DeliverProcessorService {
// Update stats
this.federatedInstanceService.registerOrFetchInstanceDoc(host).then(i => {
this.instancesRepository.update(i.id, {
- latestStatus: res instanceof StatusError ? res.statusCode : null,
isNotResponding: true,
});