We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I read the source codes from gracehttp, I don't understand the code:
gracehttp
// set graceful restart env flag envs := []string{} for _, value := range os.Environ() { if value != GRACEFUL_ENVIRON_STRING { envs = append(envs, value) } } envs = append(envs, GRACEFUL_ENVIRON_STRING)
In my options, just like:
envs = append(envs, GRACEFUL_ENVIRON_STRING)
Is it enough?
The text was updated successfully, but these errors were encountered:
主要是想把其他可能有的环境变量都带过去
Sorry, something went wrong.
我明白了,是我之前看错了,谢谢
No branches or pull requests
Hi,
I read the source codes from
gracehttp
, I don't understand the code:In my options, just like:
Is it enough?
The text was updated successfully, but these errors were encountered: