added dependency and usage of ethtool to disable rx/tx checksums, since they will never be valid from a veth. also lowered some noisy logging and removed other logging

This commit is contained in:
Blake Harnden 2019-06-12 12:41:01 -07:00
parent ac9dab097a
commit d724ee289b
5 changed files with 7 additions and 5 deletions

View file

@ -148,9 +148,7 @@ def split_args(args):
:return: shell-like syntax list
:rtype: list
"""
logging.info("split args: %s - %s", args, type(args))
if isinstance(args, basestring):
logging.info("splitting args")
args = shlex.split(args)
return args