Issue #515
closedBad return code upon failed repo sync
Description
Description of problem:
When running "pulp-admin rpm repo sync run" against a repo with a bad URL in it's --feed option, pulp-admin returns 0.
Version-Release number of selected component (if applicable):
pulp-server-2.4.0-1.el6.noarch
CentOS release 6.5 (Final)
How reproducible:
100%
Steps to Reproduce:
1. Create a repo with a bogus URL in it's --feed
2. Run the sync
3. Watch it bail out
Actual results:
-bash-4.1# pulp-admin rpm repo create --repo-id dummy --feed http://www.asrcdyasrco.com
-bash-4.1# pulp-admin rpm repo sync run --repo-id dummy
----------------------------------------------------------------------
Synchronizing Repository [dummy]
--------------------------------------------------------------------
This command may be exited via ctrl+c without affecting the request.
Downloading metadata...
[-]
... failed
HTTPConnectionPool(host='www.asrcdyasrco.com', port=80): Max retries exceeded
with url: /repodata/repomd.xml (Caused by <class 'socket.gaierror'>: [Errno -2]
Name or service not known)
Task Failed
Importer indicated a failed response
-bash-4.1# echo $?
0
Expected results:
Return code should be non-zero to indicate failure.
+ This bug was cloned from Bugzilla Bug #1138873 +
Related issues