From e1eb91343b169ad31aec55d672b8f13c3286390c Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 5 Oct 2017 12:26:54 -0700 Subject: [PATCH] zephyr: Update path to process_cache for repository split. This should have been done long ago, but better late than never. --- zerver/tests/test_zephyr.py | 4 ++-- zerver/views/zephyr.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zerver/tests/test_zephyr.py b/zerver/tests/test_zephyr.py index 4109c51d80..9165577b14 100644 --- a/zerver/tests/test_zephyr.py +++ b/zerver/tests/test_zephyr.py @@ -70,7 +70,7 @@ class ZephyrTest(ZulipTestCase): 'ssh', 'server', '--', - '/home/zulip/zulip/api/integrations/zephyr/process_ccache', + '/home/zulip/python-zulip-api/zulip/integrations/zephyr/process_ccache', 'starnine', get_user(email, realm).api_key, 'MTIzNA==']) @@ -97,7 +97,7 @@ class ZephyrTest(ZulipTestCase): 'ssh', 'server', '--', - '/home/zulip/zulip/api/integrations/zephyr/process_ccache', + '/home/zulip/python-zulip-api/zulip/integrations/zephyr/process_ccache', 'starnine', get_user(email, realm).api_key, 'MTIzNA==']) diff --git a/zerver/views/zephyr.py b/zerver/views/zephyr.py index c8f567a0a8..2d30274438 100644 --- a/zerver/views/zephyr.py +++ b/zerver/views/zephyr.py @@ -46,7 +46,7 @@ def webathena_kerberos_login(request, user_profile, # TODO: Send these data via (say) rabbitmq try: subprocess.check_call(["ssh", settings.PERSONAL_ZMIRROR_SERVER, "--", - "/home/zulip/zulip/api/integrations/zephyr/process_ccache", + "/home/zulip/python-zulip-api/zulip/integrations/zephyr/process_ccache", force_str(user), force_str(user_profile.api_key), force_str(base64.b64encode(ccache))])