We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The aim was for the runner to proxy all messages for the controller for now, but it doesn't seem to be happening.
Turns out FTLController is connecting to the controller address not the runner address:
FTLController() { String endpoint = System.getenv("FTL_ENDPOINT"); ... this points to http://127.0.0.1:8892/...
This came up because messages sent to publish's service gets 404'd as it is not present in the controller but is in the runner.
Steps to repro: ftl serve ftl deploy ./backend/controller/pubsub/testdata/java ftl call publisher.publishTen
ftl serve
ftl deploy ./backend/controller/pubsub/testdata/java
ftl call publisher.publishTen
The text was updated successfully, but these errors were encountered:
stuartwdouglas
No branches or pull requests
The aim was for the runner to proxy all messages for the controller for now, but it doesn't seem to be happening.
Turns out FTLController is connecting to the controller address not the runner address:
This came up because messages sent to publish's service gets 404'd as it is not present in the controller but is in the runner.
Steps to repro:
ftl serve
ftl deploy ./backend/controller/pubsub/testdata/java
ftl call publisher.publishTen
The text was updated successfully, but these errors were encountered: