From a8aba1dff55a2f68bf32a0a66865111571866557 Mon Sep 17 00:00:00 2001 From: tzachs Date: Tue, 4 Aug 2020 14:06:24 +0300 Subject: [PATCH] BitbucketHookReceiver - fixed as suggest by sitUboo in PR 61 --- .../com/cloudbees/jenkins/plugins/BitbucketHookReceiver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/cloudbees/jenkins/plugins/BitbucketHookReceiver.java b/src/main/java/com/cloudbees/jenkins/plugins/BitbucketHookReceiver.java index 85990fe..64e2253 100644 --- a/src/main/java/com/cloudbees/jenkins/plugins/BitbucketHookReceiver.java +++ b/src/main/java/com/cloudbees/jenkins/plugins/BitbucketHookReceiver.java @@ -53,7 +53,7 @@ public void doIndex(StaplerRequest req) throws IOException { payloadProcessor.processPayload(payload, req); } else { - LOGGER.log(Level.WARNING, "The Jenkins job cannot be triggered. You might no have configured correctly the WebHook on BitBucket with the last slash `http:///bitbucket-hook/`"); + LOGGER.log(Level.WARNING, "The Jenkins job cannot be triggered. You might not have configured correctly the WebHook on BitBucket with the last slash `http:///bitbucket-hook/` or a 'Test connection' invocation of the hook was triggered."); } }