Auth::ColumnInformation: beim Anlegen einmal fetchen
authorSven Schöling <s.schoeling@linet-services.de>
Fri, 16 Sep 2016 14:53:31 +0000 (16:53 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Mon, 26 Sep 2016 09:39:38 +0000 (11:39 +0200)
Das hat zur Folge, dass unter FCGI der fetch im post request Handling
passiert und der Request startup flotter wird.

SL/Auth/ColumnInformation.pm

index 64b600d..bf23f6d 100644 (file)
@@ -15,6 +15,8 @@ sub new {
   $self->{auth} = $params{auth} || croak "Missing 'auth'";
   weaken $self->{auth};
 
+  $self->_fetch if $self->{auth}->dbconnect(1);
+
   return $self;
 }