-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
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
[WebServerBundle] Environment variables are not reloaded when the .env file was changed #23723
Comments
I'm afraid I don't understand the exact problem:
|
@javiereguiluz. To be more concise - the front controller doesn't reload the // This piece of code occurs in the bin/console and in the front controller
if (!getenv('APP_ENV')) {
(new Dotenv())->load(__DIR__.'/../.env');
} |
@javiereguiluz, I've created a simple application that reproduces the problem. See https://github.com/voronkovich/symfony-unreloadable-envs |
Marking this as a feature request for the ability to overload env vars, which is not supported currently. |
Got it :) Reciprocally, when this env var is set, Dotenv would allow overriding of the listed vars. |
What about resetting env vars at the end of each request when using the Symfony web server? |
@nicolas-grekas, Your solution sounds great for me! So, the front controller will look like this?: if (file_exists(__DIR__'/../.env')) {
(new Dotenv())->load(__DIR__.'/../.env');
} |
@fabpot the issue is the subprocess that runs @voronkovich I wouldn't change at all the front controller, but I would change the |
@nicolas-grekas, so, we should add a method to remove all loaded envs? // WebServer.php
(new Dotenv())->removeLoadedVars(); Maybe it's better to release the WebServer as a standalone app? See #23771 |
If we can make it work without any change, that'd be the best. I don't think we need to make it standalone. At least I don't see the benefit. Fixing this issue doesn't require any new method nor class to me, it just needs dealing with an env var in some places. At least I'd make it work that way first, and of course the discussion can go on. |
@nicolas-grekas, I've created a PR with implementation of your idea: #23799 Could you please take a look at the code? |
…bles (voronkovich) This PR was squashed before being merged into the 3.3 branch (closes #23799). Discussion ---------- [Dotenv][WebServerBundle] Override previously loaded variables | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | yes | New feature? | no | BC breaks? | yes | Deprecations? | no | Tests pass? | yes | Fixed tickets | #23723 | License | MIT This PR implements @nicolas-grekas's idea about how we could refresh loaded environment variables. See his comment #23723 (comment) Commits ------- c5a1218 [Dotenv][WebServerBundle] Override previously loaded variables
I think this problem occurs because when the server is started (see https://github.com/symfony/recipes/blob/master/symfony/console/3.3/bin/console#L20), the
.env
file is loaded and then, loaded variables cannot be overridden, because a Dotenv component doesn't override the existing ones.We could solve this issue by adding an ability to Dotenv component to override the existing environment variables.
The text was updated successfully, but these errors were encountered: