diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-06-07 13:41:11 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-06-07 13:41:11 +0000 |
commit | 24057ad643f91253899a9cd66eaef0b2182f1230 (patch) | |
tree | 2e33f0eba72bc062bfda220540fc9f2114b7487f /apt-pkg | |
parent | 73edb1d9342a93be816e4c9b0c6ee42e8bc38bb6 (diff) |
* report timeouts (from Connect) and fail if they happen in pkgAcqMetaSig
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire-item.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index b2f896627..14acad85a 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -400,6 +400,12 @@ void pkgAcqMetaSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf) string Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); unlink(Final.c_str()); + // if we get a timeout if fail + if(LookupTag(Message,"FailReason") == "Timeout") { + Item::Failed(Message,Cnf); + return; + } + // queue a pkgAcqMetaIndex with no sigfile new pkgAcqMetaIndex(Owner, MetaIndexURI, MetaIndexURIDesc, MetaIndexShortDesc, "", IndexTargets, MetaIndexParser); |