We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0ee63d commit 027de8fCopy full SHA for 027de8f
syncd/Syncd.cpp
@@ -625,6 +625,11 @@ sai_status_t Syncd::processBulkQuadEvent(
625
strObjectType.c_str(),
626
objectIds.size());
627
628
+ if (isInitViewMode())
629
+ {
630
+ return processBulkQuadEventInInitViewMode(objectType, objectIds, api, attributes);
631
+ }
632
+
633
if (api != SAI_COMMON_API_BULK_GET)
634
{
635
// translate attributes for all objects
@@ -638,11 +643,6 @@ sai_status_t Syncd::processBulkQuadEvent(
638
643
}
639
644
640
645
641
- if (isInitViewMode())
642
- {
- return processBulkQuadEventInInitViewMode(objectType, objectIds, api, attributes);
- }
-
646
auto info = sai_metadata_get_object_type_info(objectType);
647
648
if (info->isobjectid)
0 commit comments