In my flow properties I set some environment variables (strings):
device-ip = 10.10.10.10
device-port = 12345
Then I add a TCP request node and set its properties:
Server = ${device-ip}
Port = ${device-port}
(There are reasons for this which I won't get into now)
This works correctly, but the port field generates an error every time that I deploy (The workspace contains some nodes that are not properly configured).
How can I ignore the error seeing as it works as expected?
Can someone who is familiar with the node-red source code point me towards the relevant section where the fields are checked at the deploy stage, so that I can create a pull request to make the "port" field behave the same as the "server" field, thus eliminating this annoying bogus error message.
Before raising a PR, please raise an issue and provide all the necessary info (and demo flow) (and potentially a gif or short video that demonstrates what you are seeing).