Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
b47d7bab
Commit
b47d7bab
authored
Jul 08, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed warning i was using for debug
parent
834b7a28
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
lib/ansible/plugins/callback/timer.py
+3
-4
No files found.
lib/ansible/plugins/callback/timer.py
View file @
b47d7bab
...
...
@@ -12,13 +12,12 @@ class CallbackModule(CallbackBase):
CALLBACK_TYPE
=
'aggregate'
start_time
=
datetime
.
now
()
def
__init__
(
self
,
display
):
super
(
CallbackModule
,
self
)
.
__init__
(
display
)
super
(
CallbackModule
,
self
)
.
__init__
(
display
)
start_time
=
datetime
.
now
()
self
.
_display
.
warning
(
"Timerv2 plugin is active from included callbacks."
)
def
days_hours_minutes_seconds
(
self
,
timedelta
):
minutes
=
(
timedelta
.
seconds
//
60
)
%
60
...
...
@@ -27,7 +26,7 @@ class CallbackModule(CallbackBase):
def
playbook_on_stats
(
self
,
stats
):
self
.
v2_playbook_on_stats
(
stats
)
def
v2_playbook_on_stats
(
self
,
stats
):
end_time
=
datetime
.
now
()
timedelta
=
end_time
-
self
.
start_time
...
...
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