Mulavar opened a new issue #1559:
URL: https://github.com/apache/dubbo-go/issues/1559
<!-- Please use this template while reporting a bug and provide as much info
as possible. Not doing so may result in your bug not being addressed in a
timely manner. Thanks!
-->
**What happened**:
The method about start config center is below:
```go
func (c *CenterConfig) prepareEnvironment() (string, error) {
dynamicConfig, err := c.GetDynamicConfiguration()
if err != nil {
logger.Errorf("Create dynamic configuration error , error
message is %v", err)
return "", errors.WithStack(err)
}
envInstance := conf.GetEnvInstance()
envInstance.SetDynamicConfiguration(dynamicConfig)
return dynamicConfig.GetProperties(c.DataId,
config_center.WithGroup(c.Group))
}
```
Even the config center started, if we do not publish root config with the
data id and group, it will return an error and we will see error log like
"start config center error".
**What you expected to happen**:
We need to assure that the config center does start normally, but we don’t
need to force configuration at the beginning.
**How to reproduce it (as minimally and precisely as possible)**:
**Anything else we need to know?**:
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]