-
-
Notifications
You must be signed in to change notification settings - Fork 375
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
Migrate to Quarkus #1520
Migrate to Quarkus #1520
Conversation
…time in native mode
…n persistence contexts"
I meet a problem, but I don't know if the cause is this migration, or a PEBKAC :
Skipping the tests is sufficient to end the build. |
Not sure, but there is now a SSL handshake timeout on the HTTP client that was not set on previous versions. During tests, it's set to 5s which could be too low if you're building on a slow machine (MockServer is building a SSL certificate dynamically when needed, it takes 1.5s on my machine). Could you try to increase the timeout in line |
Indeed, my server is a slow machine :
The build is OK :
|
Thanks! b88e5d2 |
Works well now. Thank you. |
Dumb question, but perhaps useful for other sysadmins : could you be more precise about the application.properties location, and its syntax, please ? I tried several directories, and commafeed always ignores it. So I use an .env file, successfully. |
I guess you tried to configure the JDBC url and it didn't work, because I just tried and it was not working for me either, until I realized I made a mistake in the README e6dd088 I'm sorry 😢 It worked with the |
OK, no problem. Let's try. :) |
It's not needed anymore, the value was only used in contexts where the HTTP request was available so now it's extracted from the request. Your reverse proxy needs to forward the hostname though, I think via the |
OK for application.properties. Thank you. The config directory must be in the same place than quarkus-run.jar. Concerning the reverse proxy trick, nginx does it by defaut. Indeed, all seems to work well... All but the redirection to the login page after disconnection, where there's no URL rewriting. |
I think you need those two nginx directives for it to work: proxy_set_header Host $host; |
Oh yes ! I inadvertently deleted the second directive during a config update, it seems. Sorry, that works. |
I just added a link to this in the README https://github.com/Athou/commafeed/blob/master/commafeed-server/doc/commafeed.adoc It's not very sexy yet but it should help. |
Nice ! That's much more understandable. Thank you. |
Replace Dropwizard with Quarkus
#1517