aboutsummaryrefslogtreecommitdiffstats
path: root/baro_tests/local_agent.py
diff options
context:
space:
mode:
authorMatthias Runge <mrunge@redhat.com>2019-01-15 09:56:56 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-01-15 09:56:56 +0000
commit903f521e3ae8d4af759f34ae7b39d1e4c9869e6b (patch)
treefcfb8af4d250079f891e8b651ef2fedd84e63865 /baro_tests/local_agent.py
parentbd6647d92599baade7d9037c76609dff680129b5 (diff)
parentff4536dcffc60330c0c483506c1f1ddac626f75c (diff)
Merge "Fix anteater issues of baro_tests"
Diffstat (limited to 'baro_tests/local_agent.py')
-rw-r--r--baro_tests/local_agent.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/baro_tests/local_agent.py b/baro_tests/local_agent.py
index 8201dee0..1a50d963 100644
--- a/baro_tests/local_agent.py
+++ b/baro_tests/local_agent.py
@@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
-
+#
+# Copyright 2018 OPNFV
+#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
@@ -24,6 +26,8 @@ import tests
logger = None
+TEMP_DIR = '/root'
+
class LocalAgentClient(object):
"""Client to request LocalAgent"""
@@ -201,7 +205,7 @@ def local_agent_main(bt_logger, conf, computes):
if agent_server_running:
test_name = 'barotest'
- tmpfile = '/tmp/' + test_name + '.conf'
+ tmpfile = TEMP_DIR + '/' + test_name + '.conf'
agent_config = conf.get_localagent_config(compute_node)
listen_ip = compute_node.get_ip()