From 692ae9a5dc8be11cefd08b6c137d583974f81681 Mon Sep 17 00:00:00 2001 From: Dylan Etris Date: Tue, 14 Jan 2025 14:50:57 -0500 Subject: [PATCH] fix(jira-auto-worklog): Fix typo in jira-auto-worklog-check --- plugins/jira-auto-worklog/jira-auto-worklog-check | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/jira-auto-worklog/jira-auto-worklog-check b/plugins/jira-auto-worklog/jira-auto-worklog-check index db0a72a9c..9774104e9 100755 --- a/plugins/jira-auto-worklog/jira-auto-worklog-check +++ b/plugins/jira-auto-worklog/jira-auto-worklog-check @@ -58,8 +58,8 @@ request['Content-Type'] = 'application/json' Net::HTTP.start(uri.host, uri.port, use_ssl: true, verify_mode: OpenSSL::SSL::VERIFY_PEER) do |http| res = http.request(request) if res.is_a?(Net::HTTPSuccess) - puts "Counttime is configured correctly. Time will be logged." + puts "Jira auto-worklog is configured correctly. Time will be logged." else - puts "Counttime is not configured correctly. Please check your JIRA URL and Personal Access Token." + puts "Jira auto-worklog is not configured correctly. Please check your JIRA URL and Personal Access Token." end end