Jeff King <peff@xxxxxxxx> writes: > On Tue, Mar 13, 2012 at 10:51:33AM -0700, Junio C Hamano wrote: > >> Either has AUTH as a substring in it, and leaves a door open for us to >> later introduce HTTP_RETRY to tell the machinery that drives cURL library >> to retry the request, so in that sense I am OK with either, but as your >> log message said, we want to make it clear that this is not about doing >> the authentication again (re-auth) but retrying the authentication, so >> HTTP_AUTH_RETRY would be more logical name. > > I suggested RETRY because that is all the caller needs to know: the > http_request machinery said "please call me again". Keep in mind that > this is a private interface within http.c, and this return code should > never make it out at all. Nor is it something anybody else would feed > us. Oh, the potential "retry when a request failed" in the future I had in mind was also contained within http.c. Perhaps HTTP_RETRY could be used for the same purpose? The places I had in mind that we may potentially want to retry are where we got 50x from one of the servers in the pool that serves the name we are accessing, we got 401 from the server to let us realize we gave it a wrong credential, or we got 407 from the proxy to notify a similar situation, and all are potential candidate for retrying in the client may help. The credential might have been mistyped for 40x, or we may hit a healthy server in the same pool for 50x. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html