[PATCH] Don't fetch objects that exist in the local repository
Be sure not to fetch objects that already exist in the local repository. The main process loop no longer performs this check, http-fetch now checks prior to starting a new request queue entry and when fetch_object() is called, and local-fetch now checks when fetch_object() is called. As discussed in this thread: http://marc.theaimsgroup.com/?t=112854890500001 Signed-off-by: Nick Hengeveld <nickh@reactrix.com>
This commit is contained in:
committed by
Junio C Hamano
parent
380792390e
commit
11f0dafe2b
10
http-fetch.c
10
http-fetch.c
@ -489,7 +489,10 @@ void process_request_queue()
|
||||
|
||||
while (active_requests < max_requests && request != NULL) {
|
||||
if (request->state == WAITING) {
|
||||
start_request(request);
|
||||
if (has_sha1_file(request->sha1))
|
||||
release_request(request);
|
||||
else
|
||||
start_request(request);
|
||||
curl_multi_perform(curlm, &num_transfers);
|
||||
}
|
||||
request = request->next;
|
||||
@ -890,6 +893,11 @@ static int fetch_object(struct alt_base *repo, unsigned char *sha1)
|
||||
if (request == NULL)
|
||||
return error("Couldn't find request for %s in the queue", hex);
|
||||
|
||||
if (has_sha1_file(request->sha1)) {
|
||||
release_request(request);
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef USE_CURL_MULTI
|
||||
int num_transfers;
|
||||
while (request->state == WAITING) {
|
||||
|
||||
Reference in New Issue
Block a user