@ -171,7 +171,8 @@ sub getConf {
$r = $self->getDBConf($args);
}
else {
eval { $r = $self->{refLocalStorage}->get('conf') } if ($>);
eval { $r = $self->{refLocalStorage}->get('conf') }
if ( $> and not $args->{noCache} );
$msg = "Warn: $@" if ($@);
if ( ref($r)
and $r->{cfgNum}
@ -126,7 +126,8 @@ sub getConfByNum {
$tmp =
$self->confAcc->getConf( { cfgNum => $cfgNum, raw => 1, @args } );
$self->confAcc->getConf(
{ cfgNum => $cfgNum, raw => 1, noCache => 1, @args } );
return undef unless ( $tmp and ref($tmp) and %$tmp );
$self->currentConf($tmp);