Commit 3221f385 authored by Dietmar Maurer's avatar Dietmar Maurer

parseQemuNetwork: parse queues

parent b7baac5e
...@@ -35,6 +35,8 @@ Ext.define('PVE.Parser', { statics: { ...@@ -35,6 +35,8 @@ Ext.define('PVE.Parser', { statics: {
res.firewall = match_res[1]; res.firewall = match_res[1];
} else if ((match_res = p.match(/^link_down=(\d+)$/)) !== null) { } else if ((match_res = p.match(/^link_down=(\d+)$/)) !== null) {
res.disconnect = match_res[1]; res.disconnect = match_res[1];
} else if ((match_res = p.match(/^queues=(\d+)$/)) !== null) {
res.queues = match_res[1];
} else { } else {
errors = true; errors = true;
return false; // break return false; // break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment