Hey folks…curious if anyone has noticed this issue with rover dev
in < 0.27.2 I could omit the routing_url from a subgraph config if I was specifying a subgraph_url for introspection
However in >= 0.27.2, it seems that having a routing_url is required even if I have a subgraph_url defined, otherwise the query execution will route to the deployed subgraph url rather than my local subgraph override
Hi here are configs. One thing to note is that in my config I’m claiming a graphref in the supergraph.yaml file and on the rover dev command. I don’t see that in your supergraph config. So, I don’t see how rover would be able to “fallback” ( even unintentionally) to the deployed subgraph routing_url rather than using localhost:4001 in your configs.
Setting a --graph-ref on the rover dev command will fetch all schemas and routing urls from that source and then the supergraph.yaml is overriding those.
So what it is assuming is that you want to use the routing_url from the graph-ref and the schema from introspecting the url. If that is not the case then you would need to provide both the routing_url and schema of the subgraph to override the values from GraphOS
One thing that is weird is that I don’t experience this issue for some reason with rover 0.27.1, using the same configs ( with the exception of the APOLLO_ROVER_DEV_ROUTER_VERSION=2.0.0 and federation_version: =2.10.0 having lower values 1.58.0 and 2.9.0 respectively
Also there is documentation in the repo that indicates that if subgraph_url is provided the routing_url can be omitted
That’s why I’m concerned about it potentially being a breaking change
@Chris_Coker I will share with the Rover team to get clarification if this was intended, but just to be clear that in my opinion the current behavior is as intended in which case the old behavior is a bug…
By specifying the --graph-ref flag you are basically specifying the routing_url and the schema option for all your subgraphs.
Then in the supergraph.yaml you can choose to override each one for each subgraph.
If you had two subgraph A + B and used the graph ref option plus this config
What you are referring to in the docs is when there is no routing url set, then we assume we can use the introspection url, but by setting graph-ref you have set a routing url
Thanks so much. I would be very interested in learning what you hear from the rover team. I was looking into the code earlier and did actually find a comment in the code on 0.26.3 that actually outlines the exact scenario. The comment seems to imply that the behavior in 0.26.3 was a known limitation,