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
edx
configuration
Commits
5402791c
Commit
5402791c
authored
Oct 17, 2017
by
Nadeem Shahzad
Committed by
GitHub
Oct 17, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4147 from edx/nadeem/OPS-2384
Added retries to ec2.py
parents
aa2d4296
2c25811f
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 @
5402791c
...
@@ -118,6 +118,7 @@ from boto import ec2
...
@@ -118,6 +118,7 @@ from boto import ec2
from
boto
import
rds
from
boto
import
rds
from
boto
import
route53
from
boto
import
route53
import
ConfigParser
import
ConfigParser
import
traceback
try
:
try
:
import
json
import
json
...
@@ -612,5 +613,11 @@ class Ec2Inventory(object):
...
@@ -612,5 +613,11 @@ class Ec2Inventory(object):
# Run the script
# 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