Skip to content

Commit

Permalink
Fix action status error
Browse files Browse the repository at this point in the history
  • Loading branch information
merqlove committed Aug 24, 2017
1 parent 9d6893a commit c68fe63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/do_snapshot/adapter/droplet_kit.rb
Expand Up @@ -143,7 +143,7 @@ def get_event_status(id, time)
fail DoSnapshot::EventError.new(id), response.message unless response.respond_to?(:status)

# noinspection RubyResolve,RubyResolve
response.action.status.include?('completed') ? true : false
response.status.include?('completed') ? true : false
end
end
end
Expand Down

0 comments on commit c68fe63

Please sign in to comment.