| Index: recipe_engine/run.py
|
| diff --git a/recipe_engine/run.py b/recipe_engine/run.py
|
| index d87694619e1c1e335d236fd1b9677e84aa548b77..a6d202bf0153c3f6a4390755e5d1e231f10eed8f 100644
|
| --- a/recipe_engine/run.py
|
| +++ b/recipe_engine/run.py
|
| @@ -101,7 +101,13 @@ ENV_WHITELIST_PYTHON = set([
|
| 'PYTHONUNBUFFERED',
|
| ])
|
|
|
| -ENV_WHITELIST_INFRA = ENV_WHITELIST_PYTHON | set([
|
| +ENV_WHITELIST_SWARMING = set([
|
| + 'SWARMING_BOT_ID',
|
| + 'SWARMING_HEADLESS',
|
| + 'SWARMING_TASK_ID',
|
| +])
|
| +
|
| +ENV_WHITELIST_INFRA = ENV_WHITELIST_PYTHON | ENV_WHITELIST_SWARMING | set([
|
| 'AWS_CREDENTIAL_FILE',
|
| 'BOTO_CONFIG',
|
| 'BUILDBOT_ARCHIVE_FORCE_SSH',
|
|
|