You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2018/01/23 20:52:53 UTC

qpid-dispatch git commit: DISPATCH-901: revert previous commit (i.e. some extra debugging to help diagnose CI issue)

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 2e34afd3a -> 7d32b0e85


DISPATCH-901: revert previous commit (i.e. some extra debugging to help diagnose CI issue)

This reverts commit 2e34afd3a46a141b3dd8451daaca96d11e471637.


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/7d32b0e8
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/7d32b0e8
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/7d32b0e8

Branch: refs/heads/master
Commit: 7d32b0e85dc4e917f2df23ea527e478c3316c8d5
Parents: 2e34afd
Author: Gordon Sim <gs...@redhat.com>
Authored: Tue Jan 23 20:51:34 2018 +0000
Committer: Gordon Sim <gs...@redhat.com>
Committed: Tue Jan 23 20:51:34 2018 +0000

----------------------------------------------------------------------
 tests/authservice.py                       | 1 -
 tests/system_tests_authz_service_plugin.py | 8 +-------
 2 files changed, 1 insertion(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/7d32b0e8/tests/authservice.py
----------------------------------------------------------------------
diff --git a/tests/authservice.py b/tests/authservice.py
index 2beea44..c46a9ae 100755
--- a/tests/authservice.py
+++ b/tests/authservice.py
@@ -47,7 +47,6 @@ class AuthService(MessagingHandler):
             self.listener.close()
 
     def on_connection_opening(self, event):
-        print('connection opening for %s' % event.transport.user)
         if self.permissions.get(event.transport.user):
             event.connection.properties = {
                 symbol('authenticated-identity'): "%s" % event.transport.user,

http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/7d32b0e8/tests/system_tests_authz_service_plugin.py
----------------------------------------------------------------------
diff --git a/tests/system_tests_authz_service_plugin.py b/tests/system_tests_authz_service_plugin.py
index 626109b..af84bc0 100644
--- a/tests/system_tests_authz_service_plugin.py
+++ b/tests/system_tests_authz_service_plugin.py
@@ -62,16 +62,10 @@ mech_list: SCRAM-SHA-1
         if not SASL.extended():
             return
 
-        authservice = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'authservice.py')
-        if not os.path.isfile(authservice):
-            print('authservice script does NOT exist: %s' % authservice)
-        else:
-            print('authservice script DOES exist: %s' % authservice)
-
         cls.createSaslFiles()
 
         cls.auth_service_port = cls.tester.get_port()
-        cls.tester.popen(['/usr/bin/env', 'python', authservice, '-a', '127.0.0.1:%d' % cls.auth_service_port, '-c', os.getcwd()], expect=Process.RUNNING)
+        cls.tester.popen(['/usr/bin/env', 'python', os.path.join(os.path.dirname(os.path.abspath(__file__)), 'authservice.py'), '-a', '127.0.0.1:%d' % cls.auth_service_port, '-c', os.getcwd()], expect=Process.RUNNING)
 
         cls.router_port = cls.tester.get_port()
         cls.tester.qdrouterd('router', Qdrouterd.Config([


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org