Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG]: maxAgents not being set to TaskWrapper #1013

Closed
zyronix opened this issue Oct 23, 2023 · 0 comments · Fixed by #1014
Closed

[BUG]: maxAgents not being set to TaskWrapper #1013

zyronix opened this issue Oct 23, 2023 · 0 comments · Fixed by #1014
Assignees
Labels
bug Something isn't working server Hashtopolis API/Server related

Comments

@zyronix
Copy link
Member

zyronix commented Oct 23, 2023

Version Information

0.14.1

Hashcat

No response

Description

  1. Create a task, set the maxAgents to for example '1' in the task creation screen
  2. Update the task maxAgents in the task overview screen to for example 50.

The expected behavior would be that the TaskWrapper would be updatet to 50. But it will stay on 1.

After creation:
SELECT taskWrapperId,maxAgents FROM TaskWrapper;
+---------------+-----------+
| taskWrapperId | maxAgents |
+---------------+-----------+
|             1 |         1 |
+---------------+-----------+
SELECT taskId,taskName,maxAgents FROM Task;
+--------+----------+-----------+
| taskId | taskName | maxAgents |
+--------+----------+-----------+
|      1 | Test     |         1 |
+--------+----------+-----------+

After updating maxAgents to 50:
SELECT taskWrapperId,maxAgents FROM TaskWrapper;
+---------------+-----------+
| taskWrapperId | maxAgents |
+---------------+-----------+
|             1 |         1 |
+---------------+-----------+
SELECT taskId,taskName,maxAgents FROM Task;
+--------+----------+-----------+
| taskId | taskName | maxAgents |
+--------+----------+-----------+
|      1 | Test     |        50 |
+--------+----------+-----------+

Expected behavior would be that both would be set to 50. As this will result in only 1 agent being assigned to the task max.

@zyronix zyronix added bug Something isn't working server Hashtopolis API/Server related labels Oct 23, 2023
@zyronix zyronix self-assigned this Oct 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working server Hashtopolis API/Server related
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

1 participant