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

Fixed Bug where Metager tried to close a non existent Socket

parent 22cea274
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
......@@ -272,7 +272,8 @@ abstract class Searchengine
public function shutdown()
{
fclose($this->fp);
if( $this->fp )
fclose($this->fp);
Redis::del($this->host . "." . $this->socketNumber);
}
......
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