Skip to content

Commit 9716de3

Browse files
committed
updates for python2 and try to slow down the upload loop to make DO happy
1 parent f96d9b2 commit 9716de3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ci/ci.py

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
from jinja2 import Template
1616
client = docker.from_env()
1717
session = boto3.session.Session()
18+
reload(sys)
19+
sys.setdefaultencoding('utf8')
1820

1921
# Global Vars
2022
global report_status
@@ -314,6 +316,7 @@ def report_upload():
314316
core_fail('Upload Error ' + str(error))
315317
# Loop for all others
316318
for filename in os.listdir(outdir):
319+
time.sleep(0.5)
317320
# Set content types for files
318321
if filename.lower().endswith('.svg'):
319322
CT = 'image/svg+xml'

0 commit comments

Comments
 (0)