diff --git a/example/cmd/microd/main.go b/example/cmd/microd/main.go index 6d94958a..1436bf54 100644 --- a/example/cmd/microd/main.go +++ b/example/cmd/microd/main.go @@ -61,8 +61,7 @@ func (c *cmdDaemon) command() *cobra.Command { func (c *cmdDaemon) run(cmd *cobra.Command, args []string) error { m, err := microcluster.App(microcluster.Args{ - StateDir: c.flagStateDir, - SocketGroup: c.flagSocketGroup, + StateDir: c.flagStateDir, }) if err != nil { return err @@ -73,6 +72,8 @@ func (c *cmdDaemon) run(cmd *cobra.Command, args []string) error { Debug: c.global.flagLogDebug, Version: version.Version(), + SocketGroup: c.flagSocketGroup, + ExtensionsSchema: database.SchemaExtensions, APIExtensions: api.Extensions(), ExtensionServers: api.Servers,