Remove uses of (un)set-norestart

This commit is contained in:
Randall Leeds
2015-08-24 15:57:34 -07:00
parent 5676dbc4c6
commit 183edc9839
3 changed files with 4 additions and 4 deletions

View File

@@ -77,6 +77,6 @@ A few notes:
- As some plugins require access to set app config settings and do not want/require the default Heroku-style behavior of a restart, we have the following "internal" commands that provide this functionality :
```shell
dokku config:set-norestart APP KEY1=VALUE1 [KEY2=VALUE2 ...]
dokku config:unset-norestart APP KEY1 [KEY2 ...]
dokku config:set --no-restart APP KEY1=VALUE1 [KEY2=VALUE2 ...]
dokku config:unset --no-restart APP KEY1 [KEY2 ...]
```