Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
3bf2abaa
Commit
3bf2abaa
authored
Nov 07, 2017
by
Alessio Caiazza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More restrictive state machine transitions in Clusters::ApplicationStatus
parent
f9364929
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
app/models/clusters/concerns/application_status.rb
app/models/clusters/concerns/application_status.rb
+7
-7
No files found.
app/models/clusters/concerns/application_status.rb
View file @
3bf2abaa
...
...
@@ -12,20 +12,20 @@ module Clusters
state
:installing
,
value:
2
state
:installed
,
value:
3
event
:make_scheduled
do
transition
%i(installable errored)
=>
:scheduled
end
event
:make_installing
do
transition
any
-
[
:installing
]
=>
:installing
transition
%i(scheduled)
=>
:installing
end
event
:make_installed
do
transition
any
-
[
:installed
]
=>
:installed
transition
%i(installing)
=>
:installed
end
event
:make_errored
do
transition
any
-
[
:errored
]
=>
:errored
end
event
:make_scheduled
do
transition
%i(installable errored)
=>
:scheduled
transition
any
=>
:errored
end
before_transition
any
=>
[
:scheduled
]
do
|
app_status
,
_
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment