Results 44 comments of junglie85

I think I've found the problem: ``` watchNamespace: - pravega ``` It should be: ``` watchNamespace: pravega ``` Is there any reason why the chart doesn't accept the list of...

I’ve used it a little bit. It basically provides a common interface that any math library can implement. From the usage I have seen and used, client usage would look...

Looking at it a bit more, I think this is a more representative example of what it would look like. The main thing to note from a usage point is...

From an implementation perspective, do you prefer the previous example or the following style? ```rust fn main() { let a = Vec3::new(1.0, 2.0, 3.0); let b = Vec3::new(10.0, 20.0, 30.0);...

@h3r2tic I'm cleaning up my account and would like to delete my fork. Do you plan to merge these changes?

I've just added a vertx-retrofit branch to [this example project](https://github.com/AshleyByeUK/rxweb/tree/vertx-retrofit) which reproduces the issue. If you'd like something smaller, let me know.

I think it’s already been solved, as per answer to discussion on [stackoverflow](https://stackoverflow.com/questions/44722980/retrofit-vertx-with-rxjava2-in-kotlin-illegalstateexception-message-null/44756780#44756780). From: Julien Viet Reply-To: vietj/retrofit-vertx Date: Monday, 26 June 2017 at 06:58 To: vietj/retrofit-vertx Cc: DELETED EMAIL,...

I just knocked together the following, which reproduces the issue: ``` import com.fasterxml.jackson.databind.DeserializationFeature import com.fasterxml.jackson.databind.ObjectMapper import com.julienviet.retrofit.vertx.VertxCallFactory import io.reactivex.Observable import io.vertx.core.Vertx import io.vertx.core.http.HttpClientOptions import retrofit2.Retrofit import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory import retrofit2.converter.jackson.JacksonConverterFactory import...

I get a different exception when running the example from a [previous comment](https://github.com/vietj/retrofit-vertx/issues/1#issuecomment-311271695): ``` io.reactivex.exceptions.OnErrorNotImplementedException: No suitable constructor found for type [simple type, class uk.ashleybye.grpc.TflLine]: can not instantiate from JSON...

However, I just had a thought and tried it with a non-data class and it kind of works, but you lose the benefits of a data class, such as automatic...