-
Notifications
You must be signed in to change notification settings - Fork 224
Fix issue related to Mooncake Backend data corruption in CI #1114
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
base: main
Are you sure you want to change the base?
Changes from all commits
57d861f
9c04fd5
6816390
279f96b
9b057aa
544596c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -126,7 +126,7 @@ nixl_status_t | |
| nixlMooncakeEngine::loadRemoteConnInfo(const std::string &remote_agent, | ||
| const std::string &remote_conn_info) { | ||
| std::lock_guard<std::mutex> lock(mutex_); | ||
| auto segment_id = openSegment(engine_, remote_conn_info.c_str()); | ||
| auto segment_id = openSegmentNoCache(engine_, remote_conn_info.c_str()); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to merge this change this week if we want it to make it into NIXL 0.9.0. But there are some CI issues due to the build and test scripts changes. I suggest considering opening a PR with a minimal change that fixes the memory corruption (I suppose this line) to be able to merge faster and changing the tests separately, if possible |
||
| if (segment_id < 0) return NIXL_ERR_BACKEND; | ||
| connected_agents_[remote_agent].segment_id = segment_id; | ||
| return NIXL_SUCCESS; | ||
|
|
||
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.