-
Notifications
You must be signed in to change notification settings - Fork 530
Bulk get/set for switches #2174
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: master
Are you sure you want to change the base?
Bulk get/set for switches #2174
Conversation
95af4c8
to
0ea3df1
Compare
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.
Looks Good
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
please fix build error, take a look what other bulk functions are declared, optionally since object type is extracted from name like "routes" -> "route" then from "switches" -> "switche" and it should be "switch", parser needs to be fixed in this place to correct extract object name, please fix parse.pl somewhere about here: https://github.com/opencomputeproject/SAI/blob/master/meta/parse.pl#L4453, you can add explicit check if its SWITCHE then replace that to SWITCH |
0ea3df1
to
8f262b4
Compare
Thanks @kcudnik. I am unable to locally run make in the meta to reproduce this error, which makes it harder to iterate while fixing. In the past, I could get around this issue by compiling and using old doxygen 1.8.13, but this time around, that did not work either. Is this workflow documented anywhere? Here the error I hit: [/local/github/SAI.git/meta: (bulk-get-set-switch)]$ doxygen -V [/local/github/SAI.git/meta: (bulk-get-set-switch)]$ make Also, pls note, that I have revised the PR with additional code changes. |
Thanks @kcudnik. I am unable to locally run make in the meta to reproduce this error, which makes it harder to iterate while fixing. In the past, I could get around this issue by compiling and using old doxygen 1.8.13, but this time around, that did not work either. Is this workflow documented anywhere? Here the error I hit: [/local/github/SAI.git/meta: (bulk-get-set-switch)]$ doxygen -V [/local/github/SAI.git/meta: (bulk-get-set-switch)]$ make |
4c1dfb7
to
dadd821
Compare
/azp run |
Commenter does not have sufficient privileges for PR 2174 in repo opencomputeproject/SAI |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
/azpw run |
dadd821
to
33722d4
Compare
Signed-off-by: Shrikrishna (Shri) Khare <[email protected]>
33722d4
to
ae5963d
Compare
/azpw run |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
can you update your local doxygen ? seems like your is too old and dont support some tags |
|
I built and used the latest doxygen, but local make in meta continues to fail. $ doxygen --version |
then new support needs to be added for that version, since some of the fields in config are obsolete and causing warnings |
as a quick fix you can comment those configs in Doxygen and Doxygen.compat file which are causing errors |
@shri-khare - were you able to try the workaround that Kamil suggested? Please let us know if this is still an issue |
Bulk get/set for switches