Unable to join fresh incus node to cluster

Running incus 6.0.1 on 2 identical Debian 12 VM’s.

On the bootstrap cluster member I ran

ansible@Cluster1:~$ incus cluster add cluster2
Member cluster2 join token:
eyJzZXJ2//......//In0=

On the joining incus node, I ran:

root@cluster2:~# incus admin init
Would you like to use clustering? (yes/no) [default=no]: yes
What IP address or DNS name should be used to reach this server? [default=192.168.0.101]:
Are you joining an existing cluster? (yes/no) [default=no]: yes
Please provide join token: eyJzZXJ2//......//In0=
All existing data is lost when joining a cluster, continue? (yes/no) [default=no] yes
Error: Failed to setup trust relationship with cluster: Failed to add server cert to cluster: No matching cluster join operation found

I have tried it from 2 freshly installed Incus nodes, and same errors.

incus info output on cluster bootstrap node:

ansible@Cluster1:~$ incus info
config:
  cluster.https_address: 192.168.0.100:8443
  core.https_address: 192.168.0.100:8443
api_extensions:

Any ideas what I am doing wrong?
Thank you

Weird. The error you’re getting basically means that it couldn’t locate a matching entry in incus cluster list-tokens which would normally happen if the token expired or was lost due to a server restart in the cluster between the time it was generated with incus cluster add and the time you attempted to consume it during join.

Ok tried it a few more times, and eventually got all 3 cluster members added. I think I was just being too slow from generating the token to adding the cluster member, as it seemed like the token was timing out too soon. Thanks for the quick response sir!