summaryrefslogtreecommitdiff
path: root/src/op_mode/nat.py
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2022-08-25 12:26:15 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2022-08-25 12:26:15 +0000
commit53bc8022e3beb1f817aec0d263c4d3bb379dcaf7 (patch)
tree2b8a5826f802c2f05481ffad13a228cfc2c2118e /src/op_mode/nat.py
parent20090229009d0aa783560c74207dbccb1014ebe0 (diff)
downloadvyos-1x-53bc8022e3beb1f817aec0d263c4d3bb379dcaf7.tar.gz
vyos-1x-53bc8022e3beb1f817aec0d263c4d3bb379dcaf7.zip
op-mode: T4645: Show nat source stat missing argument --family
As we use in commit 8d4205a9 argument '--family' for the function '_get_raw_data_rules(direction, family)' we must use it and for 'nat.py show_statistics' as it get raw data from the same function
Diffstat (limited to 'src/op_mode/nat.py')
-rwxr-xr-xsrc/op_mode/nat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/nat.py b/src/op_mode/nat.py
index 2dffc378b..dec04aa48 100755
--- a/src/op_mode/nat.py
+++ b/src/op_mode/nat.py
@@ -188,8 +188,8 @@ def show_rules(raw: bool, direction: str, family: str):
return _get_formatted_output_rules(nat_rules, direction, family)
-def show_statistics(raw: bool, direction: str):
- nat_statistics = _get_raw_data_rules(direction)
+def show_statistics(raw: bool, direction: str, family: str):
+ nat_statistics = _get_raw_data_rules(direction, family)
if raw:
return nat_statistics
else: