summaryrefslogtreecommitdiff
path: root/lib/chef/api_client.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/api_client.rb')
-rw-r--r--lib/chef/api_client.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/api_client.rb b/lib/chef/api_client.rb
index 550aa6bd3f..1bd06652c5 100644
--- a/lib/chef/api_client.rb
+++ b/lib/chef/api_client.rb
@@ -186,7 +186,7 @@ class Chef
# Save this client via the REST API, returns a hash including the private key
def save
http_api.put("clients/#{name}", { name: name, admin: admin, validator: validator })
- rescue Net::HTTPServerException => e
+ rescue Net::HTTPClientException => e
# If that fails, go ahead and try and update it
if e.response.code == "404"
http_api.post("clients", { name: name, admin: admin, validator: validator })