0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-13 18:08:59 +02:00

Don't quit if unknown msc in config, log it and keep going

This commit is contained in:
Devon Hudson 2023-07-21 13:08:28 -06:00
parent c809e95335
commit a48c7d33a5
No known key found for this signature in database
GPG key ID: CD06B18E77F6A628

View file

@ -17,7 +17,6 @@ package mscs
import (
"context"
"fmt"
"github.com/matrix-org/dendrite/internal/caching"
"github.com/matrix-org/dendrite/internal/httputil"
@ -26,6 +25,7 @@ import (
"github.com/matrix-org/dendrite/setup/config"
"github.com/matrix-org/dendrite/setup/mscs/msc2836"
"github.com/matrix-org/util"
"github.com/sirupsen/logrus"
)
// Enable MSCs - returns an error on unknown MSCs
@ -46,7 +46,7 @@ func EnableMSC(cfg *config.Dendrite, cm *sqlutil.Connections, routers httputil.R
case "msc2444": // enabled inside federationapi
case "msc2753": // enabled inside clientapi
default:
return fmt.Errorf("EnableMSC: unknown msc '%s'", msc)
logrus.Warnf("EnableMSC: unknown MSC '%s', this MSC is either not supported or is natively supported by Dendrite", msc)
}
return nil
}