fix(jira-auto-worklog): Fix typo in jira-auto-worklog-check

This commit is contained in:
Dylan Etris 2025-01-14 14:50:57 -05:00
parent 75483693fb
commit 692ae9a5dc
1 changed files with 2 additions and 2 deletions

View File

@ -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| Net::HTTP.start(uri.host, uri.port, use_ssl: true, verify_mode: OpenSSL::SSL::VERIFY_PEER) do |http|
res = http.request(request) res = http.request(request)
if res.is_a?(Net::HTTPSuccess) 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 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
end end