Bump up retry count on repo close

Change-Id: I9c89add98054d15adf8625caa7803d933868d18b
This commit is contained in:
Ray Milkey 2017-11-17 17:34:50 -08:00
parent 27532cd2f9
commit c6076a1d39

View File

@ -17,7 +17,7 @@ BASE_URL = 'https://oss.sonatype.org/service/local/'
GROUP_ID = 'org.onosproject' GROUP_ID = 'org.onosproject'
ARTIFACT = 'onos-api' ARTIFACT = 'onos-api'
VERSION = os.environ['ONOS_VERSION'] VERSION = os.environ['ONOS_VERSION']
MAX_TRIES = 3 MAX_TRIES = 10
# Performs an HTTP GET up to MAX_TRIES times # Performs an HTTP GET up to MAX_TRIES times
def get(url): def get(url):