We are getting error while trying to call Get File in storageAPI
public FileStream GetFile (String userId, String fileId) throws ApiException {
// verify required params are set
if(userId == null || fileId == null ) {
throw new ApiException(400, “missing required params”);
}
This is because in the below newguid and name is coming as null from jobDocumentsResponse and we are passing these parameters in GetFile method. Can somebody please check. Same issue is coming in PROD as well
We did not make any changes in our code and it was working on tuesday.
The issue is because the Group docs merge is taking approx 2.5 minutes (used to merge in seconds before) to merge even a small document. We are using groupdocs-java-client-2.5.1 . Since groupdocs is not merging the document within our configured retry counts, the fileId in the above code is null and this caused the problem. Our UI is getting timed out because of this. Can you please check what is the reason for the sudden degradation of the Services?
Hi @pavelteplitsky, let us know if there’s anything else we can provide to help facilitate this. This is a blocker for a very mission-critical part of our application.