-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Storage 503 message improvements #26145
Conversation
Hmm, it still logs a fatal, checking... |
hm, the smb storage throws StorageNotAvailableExceptions all over the place: https://github.com/owncloud/core/blob/master/apps/files_external/lib/Lib/Storage/SMB.php#L47 |
@butonic hmm, indeed. Not sure if the message "Storage temporarily available" is adequate in these case. If we do want it, maybe need to rethrow another StorageNotAvailableException and wrap the SMB one in "$previous". |
this change here was in the context of unavailable federated shares |
"Storage not available" is now "Storage temporarily not available". Exceptions are now logged in DEBUG level, not FATAL.
018dcad
to
8106f71
Compare
Can we still merge this even if it cannot cover all possible cases ? |
For me ok, agreed - better this than nothing 👍 |
In the client we have
Will adjust.. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Description
"Storage not available" is now "Storage temporarily not available".
Exceptions are now logged in DEBUG level, not FATAL.
Related Issue
For #25854 (comment)
Motivation and Context
See #25854 (comment)
How Has This Been Tested?
Setup a federated share.
Set the source share server to maintenance mode.
Try accessing the received federated share.
Types of changes
Checklist:
@owncloud/filesystem @mmattel