Frank Schröder

Results 241 comments of Frank Schröder

Thanks. Can you attach the file? I need to look at the content of the response to understand where it breaks.

Is there any use-case where clients would need to create/activate sessions manually? This is all handled in the client and the client also has the `monitor` loop without nothing really...

There is the `crypto` example which uses `ActivateSession` and `DeactivateSession` to move a session between client connections. It feels a bit contrived but maybe there is the use-case that you...

@kung-foo what would a cleaner solution look like? We can break the API with v0.5 if it makes sense since we're going to anyway.

Also, would all calls require the same `ReadDeadline`? What about a `PublishRequest`? That will wait for a long time

@Kolyan4ik99 can you test what the read deadline does with `PublishRequests` ?

I'm a bit reluctant to merge #628 without knowing that.

~~So this means that the read timeout depends on the type of request? For anything but the `PublishRequest` we can use the configured value but for `PublishRequest` we don't set...

context deadlines are specific to a request and shouldn't necessarily close the connection or am I off-base here?

I've rebased your changes onto `main`, squashed them and also added support for write timeouts. I've also cleared the deadline after the read/write. Not sure if this is necessary. Could...