Skip to content

Commit

Permalink
Implement sai_query_object_stage
Browse files Browse the repository at this point in the history
This is needed for the pysairedis python package

Signed-off-by: Saikrishna Arcot <[email protected]>
  • Loading branch information
saiarcot895 committed Aug 10, 2024
1 parent edb2b17 commit 563802d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/sai_redis_interfacequery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,18 @@ sai_status_t sai_query_attribute_capability(
capability);
}

sai_status_t sai_query_object_stage(
_In_ sai_object_id_t switch_id,
_In_ sai_object_type_t object_type,
_In_ uint32_t attr_count,
_In_ const sai_attribute_t *attr_list,
_Out_ sai_object_stage_t *stage)
{
SWSS_LOG_ENTER();

return SAI_STATUS_NOT_IMPLEMENTED;
}

sai_status_t sai_query_attribute_enum_values_capability(
_In_ sai_object_id_t switch_id,
_In_ sai_object_type_t object_type,
Expand Down

0 comments on commit 563802d

Please sign in to comment.