Fix order of extensions on startup

This commit is contained in:
Benedikt Kulmann
2020-10-05 12:24:26 +02:00
parent a02579b4ad
commit b01fc62b21
2 changed files with 9 additions and 8 deletions
+8 -8
View File
@@ -35,16 +35,12 @@ func Server(cfg *config.Config) *cli.Command {
r := runtime.New()
// TODO temporary service startup selection. Should go away and the runtime should take care of it.
return r.Start(append([]string{
"accounts",
"settings",
"konnectd",
"proxy",
"ocs",
"phoenix",
"glauth",
"webdav",
"store",
"thumbnails",
"settings",
"phoenix",
"ocs",
"webdav",
"reva-frontend",
"reva-gateway",
"reva-users",
@@ -58,6 +54,10 @@ func Server(cfg *config.Config) *cli.Command {
"reva-storage-oc-data",
"reva-storage-public-link",
"reva-storage-metadata",
"accounts",
"glauth",
"konnectd",
"thumbnails",
}, runtime.MicroServices...)...)
},
}