shwstppr commented on issue #6633:
URL: https://github.com/apache/cloudstack/issues/6633#issuecomment-1213072722
@mrog how to reproduce this? I tested with 4.17 branch env, trying to create
50 groups simultaneously and it seem to work okay with following script using
cmk,
```
#!/bin/bash
create_ag_func(){
echo "Create AG $1 times..."
cmk create affinitygroup name="abcd${1}" type='host affinity' &
}
for i in {1..50}
do
create_ag_func $i &
done
wait
echo "All done"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]