zephyr: Update path to process_cache for repository split.

This should have been done long ago, but better late than never.
This commit is contained in:
Tim Abbott
2017-10-05 12:26:54 -07:00
parent e31758c257
commit e1eb91343b
2 changed files with 3 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ class ZephyrTest(ZulipTestCase):
'ssh', 'ssh',
'server', 'server',
'--', '--',
'/home/zulip/zulip/api/integrations/zephyr/process_ccache', '/home/zulip/python-zulip-api/zulip/integrations/zephyr/process_ccache',
'starnine', 'starnine',
get_user(email, realm).api_key, get_user(email, realm).api_key,
'MTIzNA==']) 'MTIzNA=='])
@@ -97,7 +97,7 @@ class ZephyrTest(ZulipTestCase):
'ssh', 'ssh',
'server', 'server',
'--', '--',
'/home/zulip/zulip/api/integrations/zephyr/process_ccache', '/home/zulip/python-zulip-api/zulip/integrations/zephyr/process_ccache',
'starnine', 'starnine',
get_user(email, realm).api_key, get_user(email, realm).api_key,
'MTIzNA==']) 'MTIzNA=='])

View File

@@ -46,7 +46,7 @@ def webathena_kerberos_login(request, user_profile,
# TODO: Send these data via (say) rabbitmq # TODO: Send these data via (say) rabbitmq
try: try:
subprocess.check_call(["ssh", settings.PERSONAL_ZMIRROR_SERVER, "--", 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),
force_str(user_profile.api_key), force_str(user_profile.api_key),
force_str(base64.b64encode(ccache))]) force_str(base64.b64encode(ccache))])