pinfort
pinfort
please don't ask with it.
I solve it by write some code below while True: op_list = [] for op in client.longPool(): op_list.append(op) for op in op_list """some code""" time.sleep(1)
oh,no, indent was deleted
I have same issue. ## My environment is - Raspberry Pi 4 model B * 2 nodes - ubuntu for raspberry Pi > $ cat /etc/os-release > NAME="Ubuntu" > VERSION="20.04.2...
Finally, I resolved this issue with three steps. - Add `--resolv-conf=/run/systemd/resolve/resolv.conf` to `KUBELET_EXTRA_ARGS` - Ref: [kubeadm issue](https://github.com/kubernetes/kubeadm/issues/273#issuecomment-356292154) - [kubernetes official doc](https://kubernetes.io/docs/tasks/administer-cluster/dns-debugging-resolution/#known-issues) - Because my Ubuntu using `systemd-resolved` - Use `host-gw`...