Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
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
configuration
Commits
2c25811f
Commit
2c25811f
authored
Oct 16, 2017
by
nadeemshahzad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added retries to ec2.py
parent
62a6a06b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
playbooks/ec2.py
+9
-2
No files found.
playbooks/ec2.py
View file @
2c25811f
...
...
@@ -118,6 +118,7 @@ from boto import ec2
from
boto
import
rds
from
boto
import
route53
import
ConfigParser
import
traceback
try
:
import
json
...
...
@@ -612,5 +613,11 @@ class Ec2Inventory(object):
# Run the script
Ec2Inventory
()
RETRIES
=
3
for
_
in
xrange
(
RETRIES
):
try
:
Ec2Inventory
()
break
except
Exception
:
traceback
.
print_exc
()
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