diff options
| author | Conor Walsh <[email protected]> | 2021-10-18 10:39:29 +0000 |
|---|---|---|
| committer | David Marchand <[email protected]> | 2021-10-19 17:15:10 +0200 |
| commit | 6839b8ade4a4aabdbfcc36ce3941abe8e8a0808f (patch) | |
| tree | e4e87c60062d71fdad3b08f3f0e6834eef01e1ec | |
| parent | fec28ca0e3a93143829f3b41a28a8da933f28499 (diff) | |
usertools/telemetry: fix instance option help
The instance option help text was incorrect, this patch corrects it.
Fixes: 11435aae2089 ("usertools/telemetry: connect to separate instances")
Signed-off-by: Conor Walsh <[email protected]>
Acked-by: Bruce Richardson <[email protected]>
| -rwxr-xr-x | usertools/dpdk-telemetry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usertools/dpdk-telemetry.py b/usertools/dpdk-telemetry.py index 8f7d59d139..0e0a0d8fc5 100755 --- a/usertools/dpdk-telemetry.py +++ b/usertools/dpdk-telemetry.py @@ -146,7 +146,7 @@ parser = argparse.ArgumentParser() parser.add_argument('-f', '--file-prefix', default=DEFAULT_PREFIX, help='Provide file-prefix for DPDK runtime directory') parser.add_argument('-i', '--instance', default='0', type=int, - help='Provide file-prefix for DPDK runtime directory') + help='Provide instance number for DPDK application') args = parser.parse_args() sock_path = os.path.join(get_dpdk_runtime_dir(args.file_prefix), SOCKET_NAME) if args.instance > 0: |
