release 2.027002

This commit is contained in:
Oliver Gorwits
2014-05-04 10:03:51 +01:00
parent 35130a6826
commit 51e733b79a
3 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2.027002 - 2014-05-04
[BUG FIXES]
* revert use password instead of pass for Dancer::Plugin::DBIC
2.027001 - 2014-05-03
[BUG FIXES]

View File

@@ -78,4 +78,4 @@ resources:
homepage: http://netdisco.org/
license: http://opensource.org/licenses/bsd-license.php
repository: git://git.code.sf.net/p/netdisco/netdisco-ng
version: 2.027001
version: 2.027002

View File

@@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.010_000;
our $VERSION = '2.027001';
our $VERSION = '2.027002';
use App::Netdisco::Environment;
use Dancer ':script';
@@ -24,7 +24,7 @@ if (ref {} eq ref setting('database')) {
setting('plugins')->{DBIC}->{netdisco} ||= {
dsn => $dsn,
user => $user,
password => $pass,
pass => $pass,
options => {
AutoCommit => 1,
RaiseError => 1,