소스 검색

Merge branch 'master' of ssh://gogs.karmas.fr/KarmaSolutions/KarmaFW

Max F 5 년 전
부모
커밋
1aeddb2cdd
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/Database/Redis/RedisQueue.php

+ 1 - 0
src/Database/Redis/RedisQueue.php

@@ -84,6 +84,7 @@ class RedisQueue
 
 		while (! $data) {
 			$data_raw = $client->lPop($this->queue_name);
+
 			if ($data_raw) {
 				$data = unserialize($data_raw);
 				break;