We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e2e66a + e7ff3db commit 787cbd5Copy full SHA for 787cbd5
.gitignore
@@ -7,3 +7,5 @@ coverage.txt
7
/hookdeck-linux
8
/hookdeck-windows.exe
9
default_cassette.yaml
10
+.vscode/
11
+__debug_bin
pkg/proxy/proxy.go
@@ -225,8 +225,10 @@ func (p *Proxy) processAttempt(msg websocket.IncomingMessage) {
225
}
226
227
req.Body = ioutil.NopCloser(strings.NewReader(webhookEvent.Body.Request.DataString))
228
+ req.ContentLength = int64(len(webhookEvent.Body.Request.DataString))
229
230
res, err := client.Do(req)
231
+
232
if err != nil {
233
color := ansi.Color(os.Stdout)
234
localTime := time.Now().Format(timeLayout)
0 commit comments