Skip to content
Snippets Groups Projects
Commit c21fe854 authored by Mykyta Savchuk's avatar Mykyta Savchuk
Browse files

add more detailed storage 500 exception message

parent 3952437c
No related branches found
No related tags found
1 merge request!454No retry on storage 500
Pipeline #167248 failed
......@@ -117,7 +117,7 @@ public class StorageServiceImpl implements StorageService {
}
if (response.getResponseCode() == 500) {
throw new AppException(RequestStatus.NO_RETRY, "Server error", String.format("Storage service unknown error: %s", response.getBody()));
throw new AppException(RequestStatus.NO_RETRY, "Server error", String.format("Storage service error: %s", response.getBody()));
}
Records records = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment