You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there's a federated share but the source server is unavailable, the server will reply 503 with something like this:
<?xml version="1.0" encoding="utf-8"?>
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
<s:exception>Sabre\DAV\Exception\ServiceUnavailable</s:exception>
<s:message>Storage is temporarily not available</s:message>
</d:error>
Currently the client assumes 503 with Sabre\DAV\Exception\ServiceUnavailable means maintenance mode. That's not a correct assumption for this case.
It can't rely on the "s:message" string, since it's translated. The client should request status.php to check for maintenance mode before continuing.
Test criteria: Unavailable federated shares don't cause the sync run to abort. Alll other files should be synced normally, only the share should be marked with an error.
The text was updated successfully, but these errors were encountered:
From #5088:
If there's a federated share but the source server is unavailable, the server will reply 503 with something like this:
Currently the client assumes 503 with Sabre\DAV\Exception\ServiceUnavailable means maintenance mode. That's not a correct assumption for this case.
It can't rely on the "s:message" string, since it's translated. The client should request status.php to check for maintenance mode before continuing.
Test criteria: Unavailable federated shares don't cause the sync run to abort. Alll other files should be synced normally, only the share should be marked with an error.
The text was updated successfully, but these errors were encountered: