pull: Don't try to cache summaries for pull-local
Not only does this not make sense from a performance perspective, but it also doesn't work because we can't use a url as a path element. Closes: #237 Approved by: cgwalters
This commit is contained in:
parent
4e81548447
commit
eabb4e3545
|
|
@ -2107,12 +2107,14 @@ ostree_repo_pull_with_options (OstreeRepo *self,
|
||||||
soup_uri_free (uri);
|
soup_uri_free (uri);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bytes_sig && !_ostree_repo_load_cache_summary_if_same_sig (self,
|
if (bytes_sig &&
|
||||||
remote_name_or_baseurl,
|
!_ostree_repo_remote_name_is_file (remote_name_or_baseurl) &&
|
||||||
bytes_sig,
|
!_ostree_repo_load_cache_summary_if_same_sig (self,
|
||||||
&bytes_summary,
|
remote_name_or_baseurl,
|
||||||
cancellable,
|
bytes_sig,
|
||||||
error))
|
&bytes_summary,
|
||||||
|
cancellable,
|
||||||
|
error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (bytes_summary)
|
if (bytes_summary)
|
||||||
|
|
@ -2160,7 +2162,8 @@ ostree_repo_pull_with_options (OstreeRepo *self,
|
||||||
|
|
||||||
if (!summary_from_cache && bytes_summary && bytes_sig)
|
if (!summary_from_cache && bytes_summary && bytes_sig)
|
||||||
{
|
{
|
||||||
if (!_ostree_repo_cache_summary (self,
|
if (!_ostree_repo_remote_name_is_file (remote_name_or_baseurl) &&
|
||||||
|
!_ostree_repo_cache_summary (self,
|
||||||
remote_name_or_baseurl,
|
remote_name_or_baseurl,
|
||||||
bytes_summary,
|
bytes_summary,
|
||||||
bytes_sig,
|
bytes_sig,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue