FYI:
I updated cardano-node to v1.26.1 today and checked the pool on pool.vet afterwords. It showed an issue with the topology of my two relays, so I looked at the /logs/topologypdater_lastresult.json log and found the following entry 4 or 5 times that started after I finished updating cardano-node:
“msg”: “invalid blockNo [null]”
I read through a few posts here and nothing worked to resolve my issue. I then had a look in the topologyUpdater.sh script and found the line that calls “cardano-cli query…”:
cardano-cli query tip --mainnet | jq -r .blockNo
I ran the line manually and the output was just, “null” (without the quotes). So I then ran the command without the “| jq -r .blockNo” part and found that the key, “blockNo” is now named just, “block”:
{ "epoch": 258, "hash": "771d4db82173716a2beae068e8ccb84ee137767abf6f52e67126734bc06e441c", "slot": 26278014, "block": 5562824, "era": "Mary" }
I updated that line in the topologyUpdater.sh script file to:
blockNo=$(/usr/local/bin/cardano-cli query tip ${NETWORK_IDENTIFIER} | jq -r .block )
Now the script runs again and I got the response of:
{ “resultcode”: “201”, “datetime”:“2021-04-08 00:56:22”, “clientIp”: “xx.xx.xx.xx”, “iptype”: 4, “msg”: “nice to meet you” }
I believe it defaulted back to “nice to meet you” because it had been a few hours since it had run successfully. I’ll check it in an hour when the cron job runs again.
UPDATE:
I went back to pool.vet and now both relays show:
INFO: Relay node xx.xx.xx.xx:#### is onboarding on topologyUpdater
Sweet!