-
Notifications
You must be signed in to change notification settings - Fork 538
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
[orchagent] Add zmq sync mode flag #1505
Conversation
requires sonic-net/sonic-sairedis#711 to wrok |
retest vs please |
@shi-su Could you help review? |
orchagent/main.cpp
Outdated
@@ -76,6 +77,7 @@ void usage() | |||
cout << " -m MAC: set switch MAC address" << endl; | |||
cout << " -i INST_ID: set the ASIC instance_id in multi-asic platform" << endl; | |||
cout << " -s: enable synchronous mode" << endl; |
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.
Could you also add a message that this is being deprecated as well?
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.
done
orchagent/main.cpp
Outdated
@@ -76,6 +77,7 @@ void usage() | |||
cout << " -m MAC: set switch MAC address" << endl; | |||
cout << " -i INST_ID: set the ASIC instance_id in multi-asic platform" << endl; | |||
cout << " -s: enable synchronous mode" << endl; | |||
cout << " -z: redis communication mode (redis_async|redys_sync|zmq_sync), default: redis_async" << endl; |
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.
Seems "redys_sync" is a typo.
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.
done
retest vs please |
retest vs please |
Added support for zmq synchronous mode flag, passed from command line to sairedis
Added support for zmq synchronous mode flag, passed from command line to sairedis
Added support for zmq synchronous mode flag, passed from command line to sairedis
This reverts commit 43819da.
…c-net#1505) + added tests for 'show queue counters' CLI
What I did
Added support for zmq synchronous mode flag, passed from command line to sairedis
Why I did it
To add easy access for zmq sync mode from command line
How I verified it
Run OA with -z flag and syncd with -z flag
Details if related