Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SeptemberHX committed Mar 21, 2022
1 parent ead72da commit 6d69f81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion users.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def simulate_user(self):
func_i = 0
while self._running:
func_i = func_i % len(self.user_data)
send_request(f'{self.user_id}_{i}', self.func_objs[self.user_data[func_i]])
print(self.user_data)
send_request(f'{self.user_id}_{i}', self.func_objs[self.user_data[func_i]])
func_i += 1
sleep(random.randint(0, 5))

Expand Down

0 comments on commit 6d69f81

Please sign in to comment.