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.
1 parent 020c844 commit 809cc41Copy full SHA for 809cc41
main.go
@@ -47,7 +47,7 @@ func main() {
47
webhookUrl := os.Getenv("webhook")
48
whURL := flag.String("webhook.url", webhookUrl, "")
49
flag.Parse()
50
- http.ListenAndServe("localhost:9094", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+ http.ListenAndServe(":9094", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
51
b, err := ioutil.ReadAll(r.Body)
52
if err != nil {
53
panic(err)
0 commit comments