Skip to content

Commit

Permalink
Change HTTP retry methods to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
szmarczak committed Jul 25, 2018
1 parent b504346 commit 11a2f0f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ const defaults = {
retry: {
retries: 2,
methods: [
'GET',
'PUT',
'HEAD',
'DELETE',
'OPTIONS',
'TRACE'
'get',
'put',
'head',
'delete',
'options',
'trace'
],
statusCodes: [
408,
Expand Down

0 comments on commit 11a2f0f

Please sign in to comment.