We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
0.14.1
No response
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.
The text was updated successfully, but these errors were encountered:
Updating maxAgent for Tasks now also updates TaskWrapper
768b004
Fixes #1013
zyronix
Successfully merging a pull request may close this issue.
Version Information
0.14.1
Hashcat
No response
Description
The expected behavior would be that the TaskWrapper would be updatet to 50. But it will stay on 1.
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.
The text was updated successfully, but these errors were encountered: