-
Notifications
You must be signed in to change notification settings - Fork 85
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
Improvement/zenko 4730 mongodb v6.0 #2028
Conversation
Hello benzekrimaha,My role is to assist you with the merge of this Status report is not available. |
Incorrect fix versionThe
Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:
Please check the |
solution-base/mongodb/patches/mongodb-sharded-add-configsvr-service.patch
Outdated
Show resolved
Hide resolved
97e1c6b
to
59b5557
Compare
solution-base/mongodb/scripts-sharded/create-app-user-sharded.sh
Outdated
Show resolved
Hide resolved
c6f0a35
to
5dad620
Compare
501f9dc
to
4d3b158
Compare
Incorrect fix versionThe
Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:
Please check the |
5ac697a
to
5dab64f
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
c5fb4ba
to
0c91a96
Compare
7ad5f5b
to
827b21d
Compare
solution-base/mongodb/Makefile
Outdated
|
||
PATCH_DIR:="${ROOT_DIR}/patches" | ||
PATCH_FILES:="$(shell ls -d ${PATCH_DIR}/*)" | ||
PATCH_FILES := $(shell ls -d ${PATCH_DIR}/* | tr '\n' ' ') |
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.
change not needed
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.
actually without this , the patch files that are retrieved cannot be applied one by one resulting in an error ( I believe path is too long) when we try to apply the patches later on , this was also the main reason why I did the change to go for a loop
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.
that is weird...
what is the error?
- if the error is really the line of the path/command line, we can just remove the dir from the variable:
PATCH_FILES := $(shell cd ${PATCH_DIR}/ && ls -d * | tr '\n' ' ')
and change path before apply patches:@git -C ${PATCH_DIR} apply --check ${PATCH_FILES}
and@git -C ${PATCH_DIR} apply ${PATCH_FILES}
- you also changing the patch commands to add the
--3way
param, could this have an effect?
solution-base/mongodb/Makefile
Outdated
@for patch_file in $(PATCH_FILES); do \ | ||
echo "Applying patch: $$patch_file"; \ | ||
cd $(PATCH_DIR) && git apply --3way --check "$$patch_file" || exit 1; \ | ||
cd $(PATCH_DIR) && git apply --3way "$$patch_file"; \ | ||
done | ||
|
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.
change not needed
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.
cf51e4b
to
cf8469e
Compare
cf8469e
to
bbdc80b
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
e1a6126
This PRs aims to bump the mongo dependency from 5 to 6
Linked Issue : https://scality.atlassian.net/browse/ZENKO-4730