From 4744bcbfe19d352daa915a4249aacd4ccabaa505 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Wed, 22 Jun 2016 09:46:40 -0400 Subject: [PATCH] PySDK: Fix spelling of X-Keep-Desired-Replicas header. This matches what Keep services expect, and other clients use. No issue #. --- sdk/python/arvados/keep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/arvados/keep.py b/sdk/python/arvados/keep.py index 9e9fb00833..62cc6e1a81 100644 --- a/sdk/python/arvados/keep.py +++ b/sdk/python/arvados/keep.py @@ -1054,7 +1054,7 @@ class KeepClient(object): headers = {} # Tell the proxy how many copies we want it to store - headers['X-Keep-Desired-Replication'] = str(copies) + headers['X-Keep-Desired-Replicas'] = str(copies) roots_map = {} loop = retry.RetryLoop(num_retries, self._check_loop_result, backoff_start=2) -- 2.30.2