#10870 fixed change status from event
This commit is contained in:
parent
fa04db27a7
commit
dd5a4887a2
|
@ -1762,11 +1762,9 @@ function events_get_all(
|
|||
}
|
||||
}
|
||||
|
||||
$string_metaconsole_connections = implode(',', $metaconsole_connections);
|
||||
$explode_metaconsole_connections = explode(',', $string_metaconsole_connections);
|
||||
$result_meta = Promise\wait(
|
||||
parallelMap(
|
||||
$explode_metaconsole_connections,
|
||||
$metaconsole_connections,
|
||||
function ($node_int) use ($sql, $history) {
|
||||
try {
|
||||
if (is_metaconsole() === true
|
||||
|
|
|
@ -157,6 +157,10 @@ try {
|
|||
throw new Exception('Invalid filter. ['.$plain_filter.']');
|
||||
}
|
||||
|
||||
if (key_exists('server_id', $filter) === true && is_array($filter['server_id']) === false) {
|
||||
$filter['server_id'] = explode(',', $filter['server_id']);
|
||||
}
|
||||
|
||||
$filter['csv_all'] = true;
|
||||
|
||||
$names = events_get_column_names($column_names);
|
||||
|
|
Loading…
Reference in New Issue