~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/rabbitmq/rabbitmq_log.cc

  • Committer: Brian Aker
  • Date: 2011-01-25 05:20:15 UTC
  • mto: (2109.1.6 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2112.
  • Revision ID: brian@tangent.org-20110125052015-nw5jhmiq0at1qt9u
Merge in reference from pointer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
{
153
153
  context("host", 
154
154
          po::value<string>()->default_value("localhost"),
155
 
          N_("Host name to connect to"));
 
155
          _("Host name to connect to"));
156
156
  context("port",
157
157
          po::value<port_constraint>(&sysvar_rabbitmq_port)->default_value(5672),
158
 
          N_("Port to connect to"));
 
158
          _("Port to connect to"));
159
159
  context("virtualhost",
160
160
          po::value<string>()->default_value("/"),
161
 
          N_("RabbitMQ virtualhost"));
 
161
          _("RabbitMQ virtualhost"));
162
162
  context("username",
163
163
          po::value<string>()->default_value("guest"),
164
 
          N_("RabbitMQ username"));
 
164
          _("RabbitMQ username"));
165
165
  context("password",
166
166
          po::value<string>()->default_value("guest"),
167
 
          N_("RabbitMQ password"));
 
167
          _("RabbitMQ password"));
168
168
  context("use-replicator",
169
169
          po::value<string>()->default_value("default_replicator"),
170
 
          N_("Name of the replicator plugin to use (default='default_replicator')"));
 
170
          _("Name of the replicator plugin to use (default='default_replicator')"));
171
171
  context("exchange",
172
172
          po::value<string>()->default_value("ReplicationExchange"),
173
 
          N_("Name of RabbitMQ exchange to publish to"));
 
173
          _("Name of RabbitMQ exchange to publish to"));
174
174
  context("routingkey",
175
175
          po::value<string>()->default_value("ReplicationRoutingKey"),
176
 
          N_("Name of RabbitMQ routing key to use"));
 
176
          _("Name of RabbitMQ routing key to use"));
177
177
}
178
178
 
179
179
} /* namespace drizzle_plugin */