File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Yii Framework 2 elasticsearch extension Change Log
10
10
- Bug #19 : ` DeleteAll ` now deletes all entries, not first 10 (beowulfenator)
11
11
- Bug #48 : ` UpdateAll ` now updates all entries, not first 10 (beowulfenator)
12
12
- Bug #65 : Fixed warning ` array to string conversion ` when parsing error response (rhertogh, silverfire)
13
+ - Bug #73 : Fixed debug panel exception when no data was recorded for elasticsearch panel (jafaripur)
13
14
- Enh #2 : Added ` min_score ` option to query (knut)
14
15
- Enh #28 : AWS Elasticsearch service compatibility (andrey-bahrachev)
15
16
- Enh #33 : Implemented ` Command::updateSettings() ` and ` Command::updateAnalyzers() ` (githubjeka)
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ public function calculateTimings()
157
157
if ($ this ->_timings !== null ) {
158
158
return $ this ->_timings ;
159
159
}
160
- $ messages = $ this ->data ['messages ' ];
160
+ $ messages = isset ( $ this ->data ['messages ' ]) ? $ this -> data [ ' messages ' ] : [ ];
161
161
$ timings = [];
162
162
$ stack = [];
163
163
foreach ($ messages as $ i => $ log ) {
You can’t perform that action at this time.
0 commit comments