diff --git a/cmd/git-sync/main.go b/cmd/git-sync/main.go index d4d4a03..29d64f2 100644 --- a/cmd/git-sync/main.go +++ b/cmd/git-sync/main.go @@ -308,7 +308,6 @@ func updateSymlink(ctx context.Context, gitRoot, link, newDir string) error { } // Trigger webhooks to be called - log.V(0).Infof("sending webhook trigger ...\n") WebhookCallTriggerChannel <- struct{}{} return nil diff --git a/cmd/git-sync/webhooks.go b/cmd/git-sync/webhooks.go index a288482..da18026 100644 --- a/cmd/git-sync/webhooks.go +++ b/cmd/git-sync/webhooks.go @@ -57,8 +57,6 @@ func ServeWebhooks() { // Wait for trigger <- WebhookCallTriggerChannel - log.V(0).Infof("webhook trigger received ...\n") - // Calling webhook - one after another for _, v := range WebhookArray { log.V(0).Infof("calling webhook %v\n", v.URL)