Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

EntityBulker SIGSEGV when create_entry attr_count 0 #2224

Merged
merged 2 commits into from
Aug 31, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion orchagent/bulker.h
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class EntityBulker
auto& attrs = it->second.first;
attrs.insert(attrs.end(), attr_list, attr_list + attr_count);
it->second.second = object_status;
SWSS_LOG_INFO("EntityBulker.create_entry %zu, %zu, %d, %d\n", creating_entries.size(), it->second.first.size(), (int)it->second.first[0].id, inserted);
SWSS_LOG_INFO("EntityBulker.create_entry %zu, %zu, %d\n", creating_entries.size(), it->second.first.size(), inserted);
*object_status = SAI_STATUS_NOT_EXECUTED;
return *object_status;
}
Expand Down