fixed example in the DBIx::Class::Storage::DBI::Replicated synopsis
Naveed Massjouni [Tue, 11 Mar 2014 01:43:08 +0000 (21:43 -0400)]
The example in the synopsis does not work. It should be
{ balancer_type => '::Random' } instead of { balancer => '::Random' }

lib/DBIx/Class/Storage/DBI/Replicated.pm

index 648072c..3c58716 100644 (file)
@@ -37,7 +37,7 @@ also define your arguments, such as which balancer you want and any arguments
 that the Pool object should get.
 
   my $schema = Schema::Class->clone;
-  $schema->storage_type( ['::DBI::Replicated', {balancer=>'::Random'}] );
+  $schema->storage_type(['::DBI::Replicated', { balancer_type => '::Random' }]);
   $schema->connection(...);
 
 Next, you need to add in the Replicants.  Basically this is an array of