diff options
author | Rex Lee <limingjiang@huawei.com> | 2017-07-17 06:18:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-17 06:18:54 +0000 |
commit | 3a1749fb524ec38e2981c89dc3e032bb6c57719e (patch) | |
tree | db357f67084ec834fcc716bbbb5dc64db1fc4b5f | |
parent | ad60cea13e6b8a280636c289ef8a79f7e0f40de0 (diff) | |
parent | 3bc263e00480f9ebcf14a48ee938cac900c863fe (diff) |
Merge "attacker_process: fix typo s/envrioment/environment/"
-rw-r--r-- | yardstick/benchmark/scenarios/availability/attacker/attacker_process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/benchmark/scenarios/availability/attacker/attacker_process.py b/yardstick/benchmark/scenarios/availability/attacker/attacker_process.py index f7ab23dcd..cb171eafa 100644 --- a/yardstick/benchmark/scenarios/availability/attacker/attacker_process.py +++ b/yardstick/benchmark/scenarios/availability/attacker/attacker_process.py @@ -47,11 +47,11 @@ class ProcessAttacker(BaseAttacker): stdin=stdin_file) if stdout: - LOG.info("check the envrioment success!") + LOG.info("check the environment success!") return int(stdout.strip('\n')) else: LOG.error( - "the host envrioment is error, stdout:%s, stderr:%s", + "the host environment is error, stdout:%s, stderr:%s", stdout, stderr) return False |