Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration_tests/request_upstream/fastly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ service_id = ""
url = "https://example.org/"

[local_server.backends.httpme]
url = "https://http-me.glitch.me"
url = "https://http.edgecompute.app/anything/"
4 changes: 2 additions & 2 deletions integration_tests/request_upstream/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const bodySize = 64 * 1024
func TestRequestUpstreamBody(t *testing.T) {
body := make([]byte, bodySize)
for i := range body {
body[i] = byte(i)
body[i] = 'A'
}

b, err := fastly.NewHTTPBody()
Expand Down Expand Up @@ -124,7 +124,7 @@ func TestRequestUpstreamBody(t *testing.T) {
}

func requestUpstreamBody(t *testing.T, body io.Reader, size int, chunked bool) {
req, err := fsthttp.NewRequest("POST", "https://http-me.glitch.me/?anything", body)
req, err := fsthttp.NewRequest("POST", "https://http.edgecompute.app/anything/", body)
if err != nil {
t.Fatalf("NewRequest: %v", err)
}
Expand Down