-
Notifications
You must be signed in to change notification settings - Fork 208
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
Decrease log level from warn to info for git clone reject #5956
Conversation
lib/OpenQA/Task/Git/Clone.pm
Outdated
@@ -65,7 +65,7 @@ sub _git_clone ($app, $job, $ctx, $path, $url) { | |||
|
|||
my $origin_url = $git->get_origin_url; | |||
if ($url ne $origin_url) { | |||
$ctx->warn("Local checkout at $path has origin $origin_url but requesting to clone from $url"); | |||
$ctx->info("Local checkout at $path has origin $origin_url but requesting to clone from $url"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you rephrase the message to make the "so what" clear?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this actionable? My understanding from the ticket is this works as expected. So I would actually say remove it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be helpful without being actionable, e.g. when debugging and trying to make sense of what our Git code does or skips.
webui-docker-compose fail is due to https://progress.opensuse.org/issues/167524 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #5956 +/- ##
==========================================
- Coverage 98.75% 98.75% -0.01%
==========================================
Files 396 396
Lines 38966 38966
==========================================
- Hits 38482 38479 -3
- Misses 484 487 +3 ☔ View full report in Codecov by Sentry. |
3a5e4af
to
1a0f944
Compare
5a90a6e
to
a784731
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, let's try :)
Ticket: https://progress.opensuse.org/issues/167386