Skip to content

Commit

Permalink
Don't make host a required storage_args argument
Browse files Browse the repository at this point in the history
  • Loading branch information
avar committed Feb 26, 2010
1 parent 3da1906 commit 99d2137
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Changes
@@ -1,7 +1,11 @@
0.19
- Move File::Slurp from 'requires' to 'test_requires'

- Make the default pragma logic a bit simpler

- MySQL backend: Don't make host a required storage_args argument,
MySQL will use localhost by default.

0.18 Fri Feb 26 05:02:17 GMT 2010

- Don't keep the brain in memory by default anymore, but enable some
Expand Down
2 changes: 1 addition & 1 deletion lib/Hailo/Storage/DBD/mysql.pm
Expand Up @@ -47,7 +47,7 @@ sub _exists_db {
sub ready {
my ($self) = @_;

return all { exists $self->arguments->{$_} } qw(database host username password);
return all { exists $self->arguments->{$_} } qw(database username password);
}

__PACKAGE__->meta->make_immutable;
Expand Down

0 comments on commit 99d2137

Please sign in to comment.