-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: consider the schema active even with no runners #2650
Conversation
I think you might need to separate the queries |
That won't help unfortunately. I think the issue is now that the build command sees the schema ready early, so the call it attempted before the runner is up, not that this query affects the routing table. |
2face11
to
d857b16
Compare
Turns out a slight change to the query was needed. |
@@ -392,7 +392,7 @@ func (s *Service) registrationLoop(ctx context.Context, send func(request *ftlv1 | |||
s.state.Store(state) | |||
} | |||
|
|||
logger.Infof("Registering with Controller as %s for deployment %s", state, s.config.Deployment) | |||
logger.Debugf("Registering with Controller as %s for deployment %s", state, s.config.Deployment) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yessss. This is hitting PFI right now
d857b16
to
dce159a
Compare
No description provided.