Skip to content

Commit

Permalink
docs(hbi utils): Improve description of data-file and when does it no…
Browse files Browse the repository at this point in the history
…t get created (#132)
  • Loading branch information
Smejky338 authored Aug 7, 2024
1 parent 4ce50dd commit b4d4995
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions opl/hbi_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,17 +273,17 @@ def populate_main():
parser.add_argument(
"--data-file",
default="/tmp/data-file.json",
help="Where to save list of accounts and so that were created",
help="Where to save list of accounts and so that were created. Disabled when --dry-run or --no-check is enabled.",
)
parser.add_argument(
"--dry-run",
action="store_true",
help="Use this for debugging if you do not want to actuall send the messages",
help="Use this for debugging if you do not want to actually send the messages",
)
parser.add_argument(
"--no-check",
action="store_true",
help="Enable sending of hosts without checking if they appear in HBI. Good for Perf testing.",
help="Enable sending of hosts without checking if they appear in HBI. Good for Perf testing. This also stops generating data-file.",
)
opl.args.add_kafka_opts(parser)
opl.args.add_inventory_db_opts(parser)
Expand Down

0 comments on commit b4d4995

Please sign in to comment.