Skip to content

Commit

Permalink
Merge pull request #759 from Nestrik/develop
Browse files Browse the repository at this point in the history
fix resource check for linux container on windows docker
  • Loading branch information
fomars committed Jul 8, 2019
2 parents 2fc253c + 894d09f commit 84b8786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yandextank/plugins/ResourceCheck/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def is_test_finished(self):

def __check_disk(self):
''' raise exception on disk space exceeded '''
cmd = "sh -c \"df --no-sync -m -P -l -x fuse -x tmpfs -x devtmpfs -x davfs -x nfs "
cmd = "sh -c \"df --no-sync -m -P -x fuse -x tmpfs -x devtmpfs -x davfs -x nfs "
cmd += self.core.artifacts_base_dir
cmd += " | tail -n 1 | awk '{print \$4}' \""
res = execute(cmd, True, 0.1, True)
Expand Down

0 comments on commit 84b8786

Please sign in to comment.