git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Silence confusing and false-positive curl error message
@ 2005-10-21 16:18 Petr Baudis
  0 siblings, 0 replies; only message in thread
From: Petr Baudis @ 2005-10-21 16:18 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

git-http-fetch spits out curl 404 error message when unable to fetch an object,
but that's confusing since no error really happenned and the object is usually
found in a pack it tries right after that. And if the object still cannot be
retrieved, it will say another error message anyway. OTOH other HTTP errors
(403 etc) are likely fatal and the user should be still informed about them.

Signed-off-by: Petr Baudis <pasky@suse.cz>
---

 http-fetch.c |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/http-fetch.c b/http-fetch.c
index a7dc2cc..2d76ee1 100644
--- a/http-fetch.c
+++ b/http-fetch.c
@@ -1069,9 +1069,12 @@ static int fetch_object(struct alt_base 
 	}
 
 	if (request->curl_result != CURLE_OK && request->http_code != 416) {
-		ret = error("%s (curl_result = %d, http_code = %ld, sha1 = %s)",
-			    request->errorstr, request->curl_result,
-			    request->http_code, hex);
+		if (request->http_code == 404)
+			ret = -1; /* Be silent, it is probably in a pack. */
+		else
+			ret = error("%s (curl_result = %d, http_code = %ld, sha1 = %s)",
+				    request->errorstr, request->curl_result,
+				    request->http_code, hex);
 		release_request(request);
 		return ret;
 	}

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2005-10-21 16:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-21 16:18 [PATCH] Silence confusing and false-positive curl error message Petr Baudis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).