Skip to content
Snippets Groups Projects
Commit fe741839 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Merge branch '485-ux-bei-such-timeout' into 'development'

Weiteren Bug gefixt

Closes #485

See merge request !856
parents 637f1e54 4e2586d0
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
...@@ -119,8 +119,10 @@ class Searcher implements ShouldQueue ...@@ -119,8 +119,10 @@ class Searcher implements ShouldQueue
} }
} }
private function updateStats($poptime){ private function updateStats($poptime){
$connectionInfo = base64_encode(json_encode($this->connectionInfo)); if($this->connectionInfo !== NULL){
Redis::hset($this->name . ".stats", $this->pid, $connectionInfo . ";" . $poptime); $connectionInfo = base64_encode(json_encode($this->connectionInfo));
Redis::hset($this->name . ".stats", $this->pid, $connectionInfo . ";" . $poptime);
}
} }
private function getFetchTime(){ private function getFetchTime(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment