Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only print info about cache'd recipe revision being newer when it truly is #16275

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion conans/client/graph/graph_binaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,9 @@ def _evaluate_in_cache(self, cache_latest_prev, node, remotes, update):
# The final data is the cache one, not the server one
node.binary_remote = None
node.prev = cache_latest_prev.revision
if cache_time > node.pref_timestamp:
output.info("Current package revision is newer than the remote one")
node.pref_timestamp = cache_time
output.info("Current package revision is newer than the remote one")
if not node.binary:
node.binary = BINARY_CACHE
node.binary_remote = None
Expand Down