mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
fix OCIS_RUN_SERVICES
This commit is contained in:
12
changelog/unreleased/fix-ocis-run-services.md
Normal file
12
changelog/unreleased/fix-ocis-run-services.md
Normal file
@@ -0,0 +1,12 @@
|
||||
Bugfix: Fix `OCIS_RUN_SERVICES`
|
||||
|
||||
`OCIS_RUN_SERVICES` was introduced as successor to `OCIS_RUN_EXTENSIONS` because
|
||||
we wanted to call oCIS "core" extensions services. We kept `OCIS_RUN_EXTENSIONS` for
|
||||
backwards compatibility reasons.
|
||||
|
||||
It turned out, that setting `OCIS_RUN_SERVICES` has no effect since introduced. `OCIS_RUN_EXTENSIONS`.
|
||||
`OCIS_RUN_EXTENSIONS` was working fine all the time.
|
||||
|
||||
We now fixed `OCIS_RUN_SERVICES`, so that you can use it as a equivalent replacement for `OCIS_RUN_EXTENSIONS`
|
||||
|
||||
https://github.com/owncloud/ocis/pull/4133
|
||||
@@ -49,7 +49,7 @@ type Mode int
|
||||
type Runtime struct {
|
||||
Port string `yaml:"port" env:"OCIS_RUNTIME_PORT"`
|
||||
Host string `yaml:"host" env:"OCIS_RUNTIME_HOST"`
|
||||
Extensions string `yaml:"services" env:"OCIS_RUN_EXTENSIONS,OCIS_RUN_SERVICES"`
|
||||
Extensions string `yaml:"services" env:"OCIS_RUN_EXTENSIONS;OCIS_RUN_SERVICES"`
|
||||
}
|
||||
|
||||
// Config combines all available configuration parts.
|
||||
|
||||
Reference in New Issue
Block a user