Skip to content

Commit

Permalink
Remove ulimits from not nested commands
Browse files Browse the repository at this point in the history
  • Loading branch information
khizunov committed Feb 5, 2024
1 parent 8097fe5 commit dba70e0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions skipper/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ def run(command, fqdn_image=None, environment=None, interactive=False, name=None
def _run(cmd_args, stdout_to_stderr=False):
logger = logging.getLogger('skipper')

if '--ulimit' not in cmd_args:
for cmd_limit in utils.SKIPPER_ULIMIT:
cmd_args += cmd_limit

cmd = [utils.get_runtime_command()]
cmd.extend(cmd_args)
logger.debug(' '.join(cmd))
Expand Down

0 comments on commit dba70e0

Please sign in to comment.