Frank Schröder

Results 25 issues of Frank Schröder

Raw tags add arbitrary route commands to the routing table. The current approach needs review but works. By prefixing a tag with `fabio ` the following text will be added...

This patch adds the option to redirect to the same host but maybe on a different path or scheme. For this `$host` can be used on the target URL, e.g....

This patch adds a circuit breaker monitor which issues route table fragments to delete routes for which the circuit breaker is open. The current implementation supports only the HTTP path....

I am wondering whether we should notify the user if the extension object is not a pointer or if the `ua.NewExtensionObject` should return an `error` (breaking change). Usually, you register...

Some PLCs do not support encoding timestamps with millisecond precision or higher precision in `DateTime` variables. The workaround is to either send RFC3339Nano formatted strings or to encode an `LTIME`...

enhancement

We should honor the `MaxRequestMessageSize` from the session and error in the client if the request is too large.

After an auto-reconnect all registered node ids are (might be) invalid. We have recently stumbled over this rather obvious issue and disabled registered reads on our clients in turn. The...

As announced in v0.3.0 we will drop all `WithContext()` methods in v0.5.0 and require that the non-`WithContext()` methods require a `context.Context` ```go func (c *Client) Read(...) {...} func (c *Client)...

This patch drops the WithContext() methods and requires that all methods have a context. Fixes #553