populate_db: Spell “stickiness” correctly.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit f27a709a5e)
This commit is contained in:
Anders Kaseorg 2022-06-30 20:40:34 -07:00 committed by Alex Vandiver
parent 897476d4fb
commit 596057dd0a

View File

@ -249,7 +249,7 @@ class Command(BaseCommand):
)
parser.add_argument(
"--stickyness",
"--stickiness",
type=float,
default=20,
help="The percent of messages to repeat recent folks.",
@ -1032,7 +1032,7 @@ def generate_and_send_messages(
randkey = random.randint(1, random_max)
if (
num_messages > 0
and random.randint(1, random_max) * 100.0 / random_max < options["stickyness"]
and random.randint(1, random_max) * 100.0 / random_max < options["stickiness"]
):
# Use an old recipient
message_type, recipient_id, saved_data = recipients[num_messages - 1]