File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -118,14 +118,12 @@ func limitUnset(argv []string, cmdr cmd.Commander) error {
118118 usage := `
119119Unsets resource limits for an application.
120120
121- Usage: deis limits:unset [options] [--memory | --cpu] <type>=<value> ...
121+ Usage: deis limits:unset [options] [--memory | --cpu] <type>...
122122
123123Arguments:
124124 <type>
125125 the process type as defined in your Procfile, such as 'web' or 'worker'.
126126 Note that Dockerfile apps have a default 'cmd' process type.
127- <value>
128- the number of limits or requests/limits value.
129127
130128Options:
131129 -a --app=<app>
@@ -143,7 +141,7 @@ Options:
143141 }
144142
145143 app := safeGetValue (args , "--app" )
146- limits := args ["<type>=<value> " ].([]string )
144+ limits := args ["<type>" ].([]string )
147145 limitType := "memory"
148146
149147 if args ["--cpu" ].(bool ) {
You can’t perform that action at this time.
0 commit comments