You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2015/01/28 05:36:56 UTC

[18/50] trafficserver-qa git commit: Fix plugin dir (to be the correct one)

Fix plugin dir (to be the correct one)


Project: http://git-wip-us.apache.org/repos/asf/trafficserver-qa/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver-qa/commit/8ec66303
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver-qa/tree/8ec66303
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver-qa/diff/8ec66303

Branch: refs/heads/master
Commit: 8ec663035c0fd413e86a92ad9715cc204e9f89d0
Parents: 0943117
Author: Thomas Jackson <ja...@gmail.com>
Authored: Tue Dec 23 16:33:22 2014 -0800
Committer: Thomas Jackson <ja...@gmail.com>
Committed: Tue Dec 23 16:33:22 2014 -0800

----------------------------------------------------------------------
 tsqa/environment.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver-qa/blob/8ec66303/tsqa/environment.py
----------------------------------------------------------------------
diff --git a/tsqa/environment.py b/tsqa/environment.py
index 1cd5fec..cd5b747 100644
--- a/tsqa/environment.py
+++ b/tsqa/environment.py
@@ -177,7 +177,7 @@ class Layout:
         'includedir': 'include',
         'libdir': 'lib',
         'logdir': 'var/log',
-        'plugindir': 'lib/plugins',
+        'plugindir': 'libexec/trafficserver',
         'runtimedir': 'var/run',
         'sysconfdir': 'etc/trafficserver',
     }
@@ -242,7 +242,7 @@ class Environment:
             # TODO: better checking...
             self.cop.poll()
             if self.cop.returncode is not None:
-                raise Exception(self.cop.returncode)
+                raise Exception(self.cop.returncode, self.layout.prefix)
 
     def __init__(self, layout=None):
         """