mirror of https://github.com/zulip/zulip.git
populate_db: Spell “stickiness” correctly.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
b991c8019e
commit
f27a709a5e
|
@ -259,7 +259,7 @@ class Command(BaseCommand):
|
|||
)
|
||||
|
||||
parser.add_argument(
|
||||
"--stickyness",
|
||||
"--stickiness",
|
||||
type=float,
|
||||
default=20,
|
||||
help="The percent of messages to repeat recent folks.",
|
||||
|
@ -1071,7 +1071,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]
|
||||
|
|
Loading…
Reference in New Issue