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
From the source code it looks like once you've made a request to read contents of the file it will set the objectStat field and will return that instead of making another request. However, when you call Stat() on the object it makes another request. Debugging showed that both isStarted and objectInfoSet are false:
From the source code it looks like once you've made a request to read contents of the file it will set the
objectStat
field and will return that instead of making another request. However, when you call Stat() on the object it makes another request. Debugging showed that bothisStarted
andobjectInfoSet
are false:minio-go/api-get-object.go
Line 428 in de1893f
And the reason is that
response.Error
isio.EOF
and the other parts of the code never get executed.minio-go/api-get-object.go
Lines 321 to 323 in de1893f
The text was updated successfully, but these errors were encountered: