Skip to content

Commit

Permalink
ipfix probe_ptree: support configs without software RSS classes
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneia committed Jul 26, 2022
1 parent 4571335 commit 749ce28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/program/ipfix/probe_ptree/probe_ptree.lua
Expand Up @@ -231,7 +231,7 @@ function setup_workers (config)
classes = {},
remove_extension_headers = rss.software_scaling.remove_extension_headers
}
for key, class in pairs(rss.software_scaling.class) do
for key, class in pairs(rss.software_scaling.class or {}) do
table.insert(rss_config.classes, {
name = key.name,
order = key.order,
Expand Down

0 comments on commit 749ce28

Please sign in to comment.