Skip to content

Commit 635af6c

Browse files
committed
Reduced size of random users to 15
1 parent 9bea24b commit 635af6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/PyMatcha/routes/api/debug.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def debug_send_message():
179179
@debug_bp.route("/debug/recommendations/start", methods=["POST"])
180180
@debug_token_required
181181
def debug_recommendations_start_process():
182-
"""This function will create 100 random users and calculate recommendations"""
183-
populate_users(amount=30, drop_user_table=False)
182+
"""This function will create 15 random users and calculate recommendations"""
183+
populate_users(amount=15, drop_user_table=False)
184184
update_user_recommendations()
185185
return Success("Done")

0 commit comments

Comments
 (0)