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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
808ad123
Commit
808ad123
authored
Feb 08, 2018
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Log billing state changes in CheckGcpProjectBillingWorker
parent
02154350
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
app/workers/check_gcp_project_billing_worker.rb
app/workers/check_gcp_project_billing_worker.rb
+13
-0
No files found.
app/workers/check_gcp_project_billing_worker.rb
View file @
808ad123
...
...
@@ -74,7 +74,20 @@ class CheckGcpProjectBillingWorker
)
end
def
log_transition
(
previous_state
,
current_state
)
state_message
=
if
previous_state
.
nil?
&&
!
current_state
"no_billing"
elsif
previous_state
.
nil?
&&
current_state
"with_billing"
elsif
!
previous_state
&&
current_state
"billing_configured"
end
Rails
.
logger
.
info
"
#{
self
.
class
}
: state:
#{
state_message
}
"
end
def
update_billing_change_counter
(
previous_state
,
current_state
)
log_transition
(
previous_state
,
current_state
)
return
unless
!
previous_state
&&
current_state
billing_changed_counter
.
increment
...
...
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