1
0
Fork 0

[Action] go fmt

upload-progress
GitHub Action 2021-06-29 13:13:14 +00:00
parent 2151f1d2ca
commit 8d24804e50
1 changed files with 3 additions and 3 deletions

View File

@ -42,9 +42,9 @@ func main() {
s3Router.Methods(http.MethodDelete).Path("/{uploadID}").HandlerFunc(handleAbortMultipartUpload)
server := &http.Server{
Handler: router,
Addr: listen,
ReadTimeout: 30 * time.Second,
Handler: router,
Addr: listen,
ReadTimeout: 30 * time.Second,
}
log.Printf("listening on %s", listen)
err := server.ListenAndServe()