-
-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed missing s as per Python string expression syntax (#990)
supervisord uses the Python string expression syntax in its configuration files, like this `%(ENV_X)s ` It's described here: http://supervisord.org/configuration.html#environment-variables In the "Deploy->Supervisor->Configure" section of the documentation the final "s" were omitted: https://docs.vapor.codes/deploy/supervisor/#configure so copy-pasting this example was leading to wrong file names of the logs. For example, instead of the expected file name `hello-stdout.log` I had the wrong `hellotdout.log`.
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters