diff options
author | devonh <devon.dmytro@gmail.com> | 2023-01-28 23:27:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-28 23:27:53 +0000 |
commit | 63df85db6d5bc528a784dc52e550fc64385c5f67 (patch) | |
tree | 80da0f2cbcf9f4473974e600f90f20aed9803707 /federationapi/statistics | |
parent | 2debabf0f09bb6e55063bbaa00dfb77090789abc (diff) |
Relay integration to pinecone demos (#2955)
This extends the dendrite monolith for pinecone to integrate the s&f
features into the mobile apps.
Also makes a few tweaks to federation queueing/statistics to make some
edge cases more robust.
Diffstat (limited to 'federationapi/statistics')
-rw-r--r-- | federationapi/statistics/statistics.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/federationapi/statistics/statistics.go b/federationapi/statistics/statistics.go index 866c0933..e29e3b14 100644 --- a/federationapi/statistics/statistics.go +++ b/federationapi/statistics/statistics.go @@ -164,6 +164,8 @@ func (s *ServerStatistics) Success(method SendMethod) { logrus.WithError(err).Errorf("Failed to remove %q from blacklist", s.serverName) } } + + s.removeAssumedOffline() } } |