We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
objects are put via gRPC client stream. Normally the server should respond with OK only after the stream is finished by the client (via Close)
Write misses the unexpected OK response, and if user calls Write again, he receives following error:
Write
rpc error: code = Internal desc = SendMsg called after CloseSend
This is a gRPC error when trying to send a message to a closed stream (what shouldn't happen)
when stream finish encountered, and the code is OK, return
server unexpectedly interrupted the stream with status OK
neofs-sdk-go/client/object_put.go
Line 204 in 335d9fe
x.err
Client testing
Client
No
335d9fe90f24494944c2888ef385f06f5f81dcfc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
objects are put via gRPC client stream. Normally the server should respond with OK only after the stream is finished by the client (via Close)
Current Behavior
Write
misses the unexpected OK response, and if user callsWrite
again, he receives following error:This is a gRPC error when trying to send a message to a closed stream (what shouldn't happen)
Expected Behavior
when stream finish encountered, and the code is OK, return
Possible Solution
neofs-sdk-go/client/object_put.go
Line 204 in 335d9fe
x.err
will be nil here. If so, return a stream violation errorContext
Client
testingRegression
No
Your Environment
335d9fe90f24494944c2888ef385f06f5f81dcfc
The text was updated successfully, but these errors were encountered: