-
Notifications
You must be signed in to change notification settings - Fork 77
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
Fix timeout copy again #978
Conversation
Codecov ReportBase: 87.42% // Head: 87.42% // No change to project coverage 👍
Additional details and impacted files@@ Coverage Diff @@
## main #978 +/- ##
=======================================
Coverage 87.42% 87.42%
=======================================
Files 111 111
Lines 9457 9457
=======================================
Hits 8268 8268
Misses 698 698
Partials 491 491
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
fmt.Println("\nProject is not yet running. The project is still attempting to start up. Run 'astro dev logs --webserver | --scheduler' for details.") | ||
return fmt.Errorf("%w: the health check timed out after %s. Use the --wait flag to increase the time out", errWebServerUnHealthy, timeout) | ||
fmt.Printf("\n") | ||
return fmt.Errorf("there might be a problem with your project starting up. The webserver health check timed out after %s but your project will continue trying to start. Run 'astro dev logs --webserver | --scheduler' for details.\n\nTry again or use the --wait flag to increase the time out", timeout) //nolint:goerr113 |
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 capitalize the first letter of the error message?
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.
that breaks the linter
Description
fix timeout copy again
🎟 Issue(s)
Related #XXX
🧪 Functional Testing
tested manually
📸 Screenshots
📋 Checklist
make test
before taking out of draftmake lint
before taking out of draft