Skip to content

Commit 5c9b217

Browse files
Fix issue: out of range sflow polling interval is accepted and stored in config_db (sonic-net#2847)
#### What I did Fixed issue: out of range sflow polling interval is accepted and stored in config_db. Reproduce step: ``` 1. Enable sflow feature: config feature state sflow enabled 2. Enable sflow itself: config sflow enable 3. Configure out of range polling interval: config sflow polling-interval 1. Error message is shown as expected 4. Save config: config save -y 5. Check "SFLOW" section inside config_db ``` As the interval is invalid, the expected behavior is that the interval is not saved to redis. But we see the invalid value was written to redis. #### How I did it Change `click.echo` to `ctx.fail` #### How to verify it 1. Manual test 2. Add a check in existing unit test case to cover the change
1 parent 72ca484 commit 5c9b217

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

config/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6631,7 +6631,7 @@ def polling_int(ctx, interval):
66316631
"""Set polling-interval for counter-sampling (0 to disable)"""
66326632
if ADHOC_VALIDATION:
66336633
if interval not in range(5, 301) and interval != 0:
6634-
click.echo("Polling interval must be between 5-300 (0 to disable)")
6634+
ctx.fail("Polling interval must be between 5-300 (0 to disable)")
66356635

66366636
config_db = ValidatedConfigDBConnector(ctx.obj['db'])
66376637
sflow_tbl = config_db.get_table('SFLOW')

tests/sflow_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ def test_config_sflow_polling_interval(self):
237237
result = runner.invoke(config.config.commands["sflow"].
238238
commands["polling-interval"], ["500"], obj=obj)
239239
print(result.exit_code, result.output)
240+
assert result.exit_code != 0
240241
assert "Polling interval must be between 5-300" in result.output
241242

242243
# set to 20

0 commit comments

Comments
 (0)