| Index: scripts/slave/recipe_modules/webrtc/api.py
|
| diff --git a/scripts/slave/recipe_modules/webrtc/api.py b/scripts/slave/recipe_modules/webrtc/api.py
|
| index 0f5bfc98ab7b621e010828713d98b5f95cba577d..84e4a2785c8c8a4e8bc67bb423ad85773546c6cf 100644
|
| --- a/scripts/slave/recipe_modules/webrtc/api.py
|
| +++ b/scripts/slave/recipe_modules/webrtc/api.py
|
| @@ -181,11 +181,13 @@
|
| else:
|
| self._working_dir = self.m.path['slave_build']
|
|
|
| - # Cleanup symlinks if there are any created.
|
| - self.m.python('clean symlinks',
|
| - script=self.resource('cleanup_symlinks.py'),
|
| - args=[self._working_dir],
|
| - infra_step=True)
|
| + # TODO(kjellander): Deploy at all bots once verified working.
|
| + if self.mastername == 'client.webrtc.fyi':
|
| + # Cleanup symlinks if there are any created.
|
| + self.m.python('clean symlinks',
|
| + script=self.resource('cleanup_symlinks.py'),
|
| + args=[self._working_dir],
|
| + infra_step=True)
|
|
|
| update_step = self.m.bot_update.ensure_checkout(**kwargs)
|
| assert update_step.json.output['did_run']
|
|
|