Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Mar 3, 2016
1 parent b167cb1 commit 1f83653
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/SyTest/Synapse.pm
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ sub start
}

if( defined $db_type ) {
$self->${\"clear_db_$db_type"}( %db_args );
my $clearmeth = "clear_db_$db_type";
$self->${\$clearmeth}( %db_args );
}

# Clean up the media_store directory each time, or else it fills up with
Expand Down Expand Up @@ -166,6 +167,7 @@ sub start
my $config_path = $self->write_yaml_file( config => {
"server_name" => "localhost:$port",
"log_file" => "$log",
"log_config" => $self->{hs_dir}."/log.config",
"tls_certificate_path" => $cert_file,
"tls_private_key_path" => $key_file,
"tls_dh_params_path" => "$cwd/keys/tls.dh",
Expand Down

0 comments on commit 1f83653

Please sign in to comment.