conjure-java-runtime
conjure-java-runtime copied to clipboard
Verify that retrofit works with absolute URLs on methods
not sure if related but im seeing
Unable to create call adapter for class java.lang.String
for method <myService>.<myMethod> cause java.lang.IllegalArgumentException: Could not locate call adapter for class java.lang.String.
Tried:
* com.palantir.remoting2.retrofit2.AsyncSerializableErrorCallAdapterFactory
* retrofit2.DefaultCallAdapterFactory stack java.lang.IllegalArgumentException: Unable to create call adapter for class java.lang.String
for method <myService>.<myMethod>
Don't think this is related
This issue has been automatically marked as stale because it has not been touched in the last 60 days. Please comment if you'd like to keep it open, otherwise it'll be closed in 7 days time.
I think Conjure actually generates a fun little ./
to workaround exactly this:
@GET("./foo/{index}")
Otherwise, concatenating the base url http://example.com/context-path
and /foo/{index}
results in the broken url: http://example.com/foo/{index}
.
This issue has been automatically marked as stale because it has not been touched in the last 60 days. Please comment if you'd like to keep it open, otherwise it'll be closed in 7 days time.
@iamdanfox I don't think the stalebot is working well for us.