zhyyu commented on issue #8029:
URL: https://github.com/apache/skywalking/issues/8029#issuecomment-954548067
Tried just now, `SW_ES_PASSWORD='"!AI!3B"' export SW_ES_PASSWORD`, still
error.
```
private String getConfigValue(String key, final Properties properties) {
String value = System.getProperty(key);
if (value == null) {
value = System.getenv(key);
}
if (value == null) {
value = properties.getProperty(key);
}
return value;
}
```
`System.getenv(key);` will return `AI!3B` without quote.
--
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]