We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fd62c1 commit 10e0d4bCopy full SHA for 10e0d4b
apps/meteor/ee/server/startup/federation.ts
@@ -54,8 +54,6 @@ export const startFederationService = async (): Promise<void> => {
54
}
55
});
56
57
- await setupFederationMatrix();
58
-
59
settings.watchMultiple(
60
[
61
'Federation_Service_Enabled',
@@ -72,4 +70,10 @@ export const startFederationService = async (): Promise<void> => {
72
70
await configureFederation();
73
71
},
74
);
+
+ try {
75
+ await setupFederationMatrix();
76
+ } catch (err) {
77
+ logger.error({ msg: 'Failed to setup federation-matrix:', err });
78
+ }
79
};
0 commit comments