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

Merge branch 'revert-d43b781d' into 'development'

Revert "fetching adgoal results through cache again"

See merge request !1698
parents d43b781d 41ffbe7d
No related branches found
No related tags found
3 merge requests!1712Development,!1699Development,!1698Revert "fetching adgoal results through cache again"
......@@ -454,7 +454,7 @@ class MetaGer
if ($waitForResult) {
while (microtime(true) - $startTime < 5) {
$answer = Cache::get($hash);
$answer = Redis::get($hash);
if ($answer === null) {
usleep(50 * 1000);
} else {
......@@ -462,7 +462,7 @@ class MetaGer
}
}
} else {
$answer = Cache::get($hash);
$answer = Redis::get($hash);
}
if ($answer === null) {
return false;
......
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