We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ca140 commit c1b0fd1Copy full SHA for c1b0fd1
lib/travis/hub/handler.rb
@@ -31,6 +31,7 @@ def run
31
32
def handle
33
const = Service.const_get("Update#{camelize(type)}")
34
+ p [event, payload]
35
const.new(context, event, payload).run
36
end
37
lib/travis/hub/service/state_update.rb
@@ -34,7 +34,7 @@ def key
}
def apply?
- return true if out_of_band?
+ return true if out_of_band? # TODO we need to increment the counter here, don't we?
38
return missing unless given?
39
apply = ordered? ? ordered : unordered
40
return true unless ENV['UPDATE_COUNT']
0 commit comments