No gRPC URL is set!

Hello there - I’m working through a trial of the hybrid service and I’m having trouble getting the docker gateway functioning. It’s appears to be running, however I’m getting these constant No gRPC URL errors (see below). Any thoughts on what I might be missing?

time="Jun 10 17:42:39" level=info msg="Gateway started (v2.3.6)"
time="Jun 10 17:42:39" level=info msg="--> Listening on address: (open interface)"
time="Jun 10 17:42:39" level=info msg="--> Listening on port: 8080"
time="Jun 10 17:42:39" level=info msg="--> PID: 40"
time="Jun 10 17:42:39" level=error msg="No gRPC URL is set!"
2017/06/10 17:42:39 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: No gRPC URL is set!"; Reconnecting to { <nil>}
time="Jun 10 17:42:41" level=error msg="No gRPC URL is set!"
2017/06/10 17:42:41 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: No gRPC URL is set!"; Reconnecting to { <nil>}
time="Jun 10 17:42:45" level=error msg="No gRPC URL is set!"
2017/06/10 17:42:45 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: No gRPC URL is set!"; Reconnecting to { <nil>}
time="Jun 10 17:42:51" level=error msg="No gRPC URL is set!"
2017/06/10 17:42:51 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: No gRPC URL is set!"; Reconnecting to { <nil>}
time="Jun 10 17:43:00" level=error msg="No gRPC URL is set!"
2017/06/10 17:43:00 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: No gRPC URL is set!"; Reconnecting to { <nil>}

To stop this message from appearing, you will need to set an environment variable in the container when it starts, you can do this with the docker command.

The variable you must set is:

TYK_GW_COPROCESSOPTIONS_ENABLECOPROCESS=false

Hope that helps? Let me know how you get on.

Hey - that worked! Thank you very much!