Re: filesystem (LocalBlobStore) failing intermittently on initial "upload" in v2.2.1

2021-01-07 Thread John Calcote
One more comment - it's an intermittent failure. Sometimes it works, sometimes not.

filesystem (LocalBlobStore) failing intermittently on initial "upload" in v2.2.1

2021-01-07 Thread John Calcote
We use the filesystem (LocalBlobStore) implementation for integration testing in our code. I'm seeing the following behavior in version 2.2.1 which I recently upgraded to: ``` 2021-01-07 20:03:43.503,7964896021968234 {} DEBUG c.p.d.m.j.AbstractUploadCallable [cpu-normalpri-1] [task 1] State

Re: filesystem (LocalBlobStore) failing intermittently on initial "upload" in v2.2.1

2021-01-07 Thread Andrew Gaul
Hi John, the code in LocalBlobStore.putBlob looks like this: String eTag = storageStrategy.putBlob(containerName, blob); setBlobAccess(containerName, blobKey, options.getBlobAccess()); I suspect that the object is being removed by another client in between these calls. Instead