-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Support --timeout
in neofs-cli
#1837
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1837 +/- ##
=======================================
Coverage 31.22% 31.23%
=======================================
Files 375 374 -1
Lines 26440 26438 -2
=======================================
Hits 8257 8257
+ Misses 17496 17494 -2
Partials 687 687
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
Allow to specify it everywhere `--rpc-endpoint` flag is present. Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
Avoid encoding object ID to string. Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
Rebased on master. |
|
||
mtx.Lock() | ||
exec.writeIDList(ids) | ||
mtx.Unlock() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we defer this unlock?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could but it is simple enough like this, writeIDList
is not expected to panic.
Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
Avoid encoding object ID to string. Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
Close #1826.
Also, improve object.Search service.