Skip to content

Commit

Permalink
refactor: remove default get method from fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Oct 27, 2022
1 parent 2e8226c commit 8f40327
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lambda/handler-runner/docker-runner/DockerContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,7 @@ export default class DockerContainer {
)}`,
)

const res = await fetch(layerUrl, {
method: 'get',
})
const res = await fetch(layerUrl)

if (!res.ok) {
log.warning(
Expand Down

0 comments on commit 8f40327

Please sign in to comment.