We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db77265 commit a80289fCopy full SHA for a80289f
app/actions/stack_update.rb
@@ -14,7 +14,7 @@ def update(stack, message)
14
stack.db.transaction do
15
stack_updates = {}
16
stack_updates[:state] = message.state if message.requested?(:state)
17
- stack_updates[:state_reason] = message.state_reason if message.requested?(:state_reason)
+ stack_updates[:state_reason] = message.state_reason if message.state_reason_requested?
18
stack.update(stack_updates) if stack_updates.any?
19
20
MetadataUpdate.update(stack, message)
0 commit comments