FIX: Missing variable outside of `begin` block.

This commit is contained in:
Guo Xiang Tan 2018-07-27 08:19:11 +08:00
parent 313cd9940d
commit ccf76d45f2
1 changed files with 2 additions and 1 deletions

View File

@ -70,6 +70,7 @@ module Jobs
body = build_web_hook_body(args, web_hook)
web_hook_event = WebHookEvent.create!(web_hook_id: web_hook.id)
response = nil
begin
content_type =
@ -118,7 +119,7 @@ module Jobs
web_hook_event.destroy!
end
retry_web_hook if response.status != 200
retry_web_hook if response&.status != 200
end
def retry_web_hook