Use exit code 1 when encountering a ReadTimeout

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2015-11-10 10:11:20 -08:00 committed by Daniel Nephin
parent 886134c1f3
commit 666c3cb1c7
1 changed files with 1 additions and 0 deletions

View File

@ -80,6 +80,7 @@ def main():
"If you encounter this issue regularly because of slow network conditions, consider setting "
"COMPOSE_HTTP_TIMEOUT to a higher value (current value: %s)." % HTTP_TIMEOUT
)
sys.exit(1)
def setup_logging():