Merge pull request #3389 from ethereum-optimism/develop
Develop -> Master
This commit is contained in:
commit
7e54f414f7
@ -8,7 +8,6 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"math"
|
||||
"math/rand"
|
||||
"net/http"
|
||||
@ -408,7 +407,7 @@ func (b *Backend) doForward(ctx context.Context, rpcReqs []*RPCReq, isBatch bool
|
||||
}
|
||||
|
||||
defer httpRes.Body.Close()
|
||||
resB, err := ioutil.ReadAll(io.LimitReader(httpRes.Body, b.maxResponseSize))
|
||||
resB, err := io.ReadAll(io.LimitReader(httpRes.Body, b.maxResponseSize))
|
||||
if err != nil {
|
||||
return nil, wrapErr(err, "error reading response body")
|
||||
}
|
||||
|
@ -3,5 +3,5 @@ package proxyd
|
||||
import "fmt"
|
||||
|
||||
func wrapErr(err error, msg string) error {
|
||||
return fmt.Errorf("%s %v", msg, err)
|
||||
return fmt.Errorf("%s %w", msg, err)
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"bytes"
|
||||
"context"
|
||||
"encoding/json"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"strings"
|
||||
@ -122,7 +122,7 @@ func (h *BatchRPCResponseRouter) ServeHTTP(w http.ResponseWriter, r *http.Reques
|
||||
h.mtx.Lock()
|
||||
defer h.mtx.Unlock()
|
||||
|
||||
body, err := ioutil.ReadAll(r.Body)
|
||||
body, err := io.ReadAll(r.Body)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
@ -241,12 +241,12 @@ func (m *MockBackend) Requests() []*RecordedRequest {
|
||||
|
||||
func (m *MockBackend) wrappedHandler(w http.ResponseWriter, r *http.Request) {
|
||||
m.mtx.Lock()
|
||||
body, err := ioutil.ReadAll(r.Body)
|
||||
body, err := io.ReadAll(r.Body)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
clone := r.Clone(context.Background())
|
||||
clone.Body = ioutil.NopCloser(bytes.NewReader(body))
|
||||
clone.Body = io.NopCloser(bytes.NewReader(body))
|
||||
m.requests = append(m.requests, &RecordedRequest{
|
||||
Method: r.Method,
|
||||
Headers: r.Header.Clone(),
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"net/http"
|
||||
"os"
|
||||
"testing"
|
||||
@ -67,7 +67,7 @@ func (p *ProxydHTTPClient) SendRequest(body []byte) ([]byte, int, error) {
|
||||
}
|
||||
defer res.Body.Close()
|
||||
code := res.StatusCode
|
||||
resBody, err := ioutil.ReadAll(res.Body)
|
||||
resBody, err := io.ReadAll(res.Body)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
@ -3,7 +3,6 @@ package proxyd
|
||||
import (
|
||||
"encoding/json"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"strings"
|
||||
)
|
||||
|
||||
@ -103,7 +102,7 @@ func ParseBatchRPCReq(body []byte) ([]json.RawMessage, error) {
|
||||
}
|
||||
|
||||
func ParseRPCRes(r io.Reader) (*RPCRes, error) {
|
||||
body, err := ioutil.ReadAll(r)
|
||||
body, err := io.ReadAll(r)
|
||||
if err != nil {
|
||||
return nil, wrapErr(err, "error reading RPC response")
|
||||
}
|
||||
|
@ -6,7 +6,6 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"math"
|
||||
"net/http"
|
||||
"strconv"
|
||||
@ -236,7 +235,7 @@ func (s *Server) HandleRPC(w http.ResponseWriter, r *http.Request) {
|
||||
"user_agent", userAgent,
|
||||
)
|
||||
|
||||
body, err := ioutil.ReadAll(io.LimitReader(r.Body, s.maxBodySize))
|
||||
body, err := io.ReadAll(io.LimitReader(r.Body, s.maxBodySize))
|
||||
if err != nil {
|
||||
log.Error("error reading request body", "err", err)
|
||||
writeRPCError(ctx, w, nil, ErrInternal)
|
||||
|
@ -4,11 +4,11 @@ import (
|
||||
"crypto/tls"
|
||||
"crypto/x509"
|
||||
"errors"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
)
|
||||
|
||||
func CreateTLSClient(ca string) (*tls.Config, error) {
|
||||
pem, err := ioutil.ReadFile(ca)
|
||||
pem, err := os.ReadFile(ca)
|
||||
if err != nil {
|
||||
return nil, wrapErr(err, "error reading CA")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user