fixed bug that data_source DEPRECATED warnings pirnt...
...STDERR
... | ... |
@@ -1,4 +1,5 @@ |
1 | 1 |
0.1691 |
2 |
+ - fixed bug that data_source DEPRECATED warnings pirnt STDERR |
|
2 | 3 |
- fixed bug that type_rule from option can't receive filter name |
3 | 4 |
0.1690 |
4 | 5 |
- use latest Object::Simple features |
... | ... |
@@ -1242,7 +1242,8 @@ sub _connect { |
1242 | 1242 |
|
1243 | 1243 |
# Attributes |
1244 | 1244 |
my $dsn = $self->data_source; |
1245 |
- warn "data_source is DEPRECATED! use dsn instead\n"; |
|
1245 |
+ warn "data_source is DEPRECATED! use dsn instead\n" |
|
1246 |
+ if $dsn; |
|
1246 | 1247 |
$dsn ||= $self->dsn; |
1247 | 1248 |
croak qq{"dsn" must be specified } . _subname |
1248 | 1249 |
unless $dsn; |