Trying to copy file within same Storage account causing 'Could not verify copy source' exception.
I am copying using uri like below...Is there something wrong am doing here? I am using Java 11
destinationBlob.startCopy(uri);
Caused by: com.microsoft.azure.storage.StorageException: Could not verify copy source.
at com.microsoft.azure.storage.StorageException.translateException(StorageException.java:87)
at com.microsoft.azure.storage.core.StorageRequest.materializeException(StorageRequest.java:305)
at com.microsoft.azure.storage.core.ExecutionEngine.executeWithRetry(ExecutionEngine.java:196)
at com.microsoft.azure.storage.blob.CloudBlob.startCopy(CloudBlob.java:791)
at com.microsoft.azure.storage.blob.CloudBlob.startCopy(CloudBlob.java:740)
at com.microsoft.azure.storage.blob.CloudBlob.startCopy(CloudBlob.java:697)
at com.microsoft.azure.storage.blob.CloudBlob.startCopy(CloudBlob.java:660)
at com.microsoft.azure.storage.blob.CloudBlob.startCopy(CloudBlob.java:626)
I checked storage Blob logs around the same time when this occured I also see 404 'ResourceNotFound' for that particular file and this issue is occuring sporadically.
Can anyone assist on this issue please? @deherman-MSFT