You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| OPR_EXECUTOR_MAINTENANCE_INTERVAL| Interval (in seconds) at which the Executor performs maintenance tasks, ex: `60`|
198
193
| OPR_EXECUTOR_NETWORK | Network used by the executor for runtimes, ex: `openruntimes-runtimes`|
199
194
| OPR_EXECUTOR_SECRET | Secret key used by the executor for authentication |
200
-
| OPR_EXECUTOR_LOGGING_PROVIDER | Deprecated: use `OPR_EXECUTOR_LOGGING_CONFIG` with DSN instead. External logging provider used by the executor, ex: `sentry` |
201
-
| OPR_EXECUTOR_LOGGING_CONFIG | External logging provider DSN used by the executor, ex: `sentry://PROJECT_ID:SENTRY_API_KEY@SENTRY_HOST/`|
->param('restartPolicy', DockerAPI::RESTART_NO, newWhiteList([DockerAPI::RESTART_NO, DockerAPI::RESTART_ALWAYS, DockerAPI::RESTART_ON_FAILURE, DockerAPI::RESTART_UNLESS_STOPPED], true), 'Define restart policy for the runtime once an exit code is returned. Default value is "no". Possible values are "no", "always", "on-failure", "unless-stopped".', true)
->param('restartPolicy', DockerAPI::RESTART_NO, newWhiteList([DockerAPI::RESTART_NO, DockerAPI::RESTART_ALWAYS, DockerAPI::RESTART_ON_FAILURE, DockerAPI::RESTART_UNLESS_STOPPED], true), 'Define restart policy once exit code is returned by command. Default value is "no". Possible values are "no", "always", "on-failure", "unless-stopped".', true)
166
162
->inject('response')
167
163
->inject('request')
168
-
->inject('log')
169
164
->inject('runner')
170
165
->action(
171
166
function (
@@ -187,7 +182,6 @@ function (
187
182
string$restartPolicy,
188
183
Response$response,
189
184
Request$request,
190
-
Log$log,
191
185
Runner$runner
192
186
) {
193
187
// Extra parsers and validators to support both JSON and multipart
0 commit comments