Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 docs/source/gearmand.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ SYNOPSIS

.. option:: -R [ --round-robin ]

Assign work in round-robin order per worker connection. The default is to assign work in the order of functions added by the worker.
Assign work in round-robin order per worker connection. As of version 2.0.0, this is the default behavior, and it cannot be deactivated. This command line option does nothing, and its continued existence is only supported for backwards compatibility.

.. option:: -q [ --queue-type ] arg

Expand Down
2 changes: 1 addition & 1 deletion gearmand/gearmand.cc
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ int main(int argc, char *argv[])
"Load protocol module.")

("round-robin,R", boost::program_options::bool_switch(&opt_round_robin)->default_value(true),
"Assign work in round-robin order per worker connection. This is the default behavior, and it cannot be deactivated. This option is only provided for backwards compatibility.")
"Assign work in round-robin order per worker connection. This is the default behavior, and it cannot be deactivated. This command line option does nothing and is only supported for backwards compatibility.")

("queue-type,q", boost::program_options::value(&queue_type)->default_value("builtin"),
"Persistent queue type to use.")
Expand Down
Loading