-
Notifications
You must be signed in to change notification settings - Fork 22
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
issue-2100: make GetErrorFromPreconditionFailed function (of blockstore SS proxy) look the same as the corresponding function of filestore SS proxy #2114
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yegorskii
previously approved these changes
Sep 23, 2024
qkrorlqr
reviewed
Sep 23, 2024
qkrorlqr
reviewed
Sep 23, 2024
SvartMetal
force-pushed
the
users/svartmetal/issue-2100/2
branch
2 times, most recently
from
September 23, 2024 16:28
4ba9d57
to
78fd9f5
Compare
…re SS proxy) look the same as the corresponding function of filestore SS proxy
SvartMetal
force-pushed
the
users/svartmetal/issue-2100/2
branch
from
September 23, 2024 20:59
78fd9f5
to
3be0b09
Compare
yegorskii
approved these changes
Sep 24, 2024
qkrorlqr
approved these changes
Sep 24, 2024
SvartMetal
added a commit
that referenced
this pull request
Oct 14, 2024
…re SS proxy) look the same as the corresponding function of filestore SS proxy (#2114)
SvartMetal
added a commit
that referenced
this pull request
Oct 15, 2024
… for filestore SS proxy; cloud/storage/core/libs/ss_proxy should be able to backup path descriptions; extract TSSProxyActor from cloud/filestore - this actor implements DescribeScheme, ModifyScheme and WaitSchemeTx requests + small several small fixes (#2273) * issue-757: check data that was written before static BS group destruction in local-emergency test (#2068) * issue-757: should not unmount volume (in local-emergency test) before static BS group destruction in order to make emergency unexpected (#2079) * issue-2100: make GetErrorFromPreconditionFailed function (of blockstore SS proxy) look the same as the corresponding function of filestore SS proxy (#2114) * issue-2100: extract TSSProxyActor from cloud/filestore - this actor implements DescribeScheme, ModifyScheme and WaitSchemeTx requests (#2131) * issue-2100: cloud/storage/core/libs/ss_proxy should be able to backup path descriptions (#2163) * issue-2100: implement fallback mode for filestore SS proxy (#2226) * issue-2100: fix TSSProxyTest.ShouldDescribeFileStoreInFallbackMode test (#2237) * replace contrib/ydb and contrib/ydb/library/actors * fix & add cmake lists * fix cmake lists again * fix cmake lists again and again --------- Co-authored-by: Mikhail Montsev <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Follow-up for work started at #2101.
There are three possible error messages:
Wrong version in VolumeConfig
(blockstore)Wrong version in Assign Volume
(blockstore)Wrong version in config
(filestore)We may use just
Wrong version in
in order to unify all of these messages.#2100