Borja o'Cook

Results 47 comments of Borja o'Cook

One option covered in the sync call is to require the `this` qualifier **only** when not having it would be ambiguous. The advantage of this would be that it would...

I don't have a strong opinion on this RFC, but if `Array` already returned an `Iterator` interface, I'd probably vote against an RFC that wanted to change them to return...

The first step would be to modify the following https://github.com/ponylang/ponyc/blob/99a1c6a83e2ba7acb179bbd51b27ee2cc462d745/src/libponyc/expr/operator.c#L212-L218 To deal with `TK_FUNCHAIN` (which represents a series of calls with`.>`): ```diff diff --git a/src/libponyc/expr/operator.c b/src/libponyc/expr/operator.c index e7863690..735681bf 100644 ---...

@stefandd No consensus as of yet afaik. I won't be able to give this the time that it needs until next month.

@jemc Your proposal sounds good. I came round on your idea: your point about having a silent breaking change was a good one.

I was able to make the consumer read messages from the log again by re-creating the assignment from scratch whenever it loses connection to the broker: ```rust let assignment =...

@slinkydeveloper I detect broker disconnection by listening for [`KafkaError::Global(BrokerTransportFailure)`](https://docs.rs/rdkafka/0.34.0/rdkafka/types/enum.RDKafkaErrorCode.html#variant.BrokerTransportFailure`) in the [`ClientContext::error`](https://docs.rs/rdkafka/0.34.0/rdkafka/client/trait.ClientContext.html) callback.