Merge "Drop trycmd() from manila/utils.py"

This commit is contained in:
Zuul 2019-01-04 07:15:36 +00:00 committed by Gerrit Code Review
commit 7665ff4404
1 changed files with 0 additions and 7 deletions

View File

@ -96,13 +96,6 @@ def execute(*cmd, **kwargs):
return processutils.execute(*cmd, **kwargs)
def trycmd(*args, **kwargs):
"""Convenience wrapper around oslo's trycmd() function."""
if 'run_as_root' in kwargs and 'root_helper' not in kwargs:
kwargs['root_helper'] = _get_root_helper()
return processutils.trycmd(*args, **kwargs)
class SSHPool(pools.Pool):
"""A simple eventlet pool to hold ssh connections."""