Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
1c10cbb0
Commit
1c10cbb0
authored
Jun 10, 2016
by
Dominik Hebeler
Browse files
Merge branch 'Bugfix' into 'master'
Fixed Bug where Metager tried to close a non existent Socket See merge request
!74
parents
973889e5
ea9579e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/Models/Searchengine.php
View file @
1c10cbb0
...
...
@@ -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
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment