Damiano Albani
Damiano Albani
What's the status of this pull request? I'd like to be able to call functions like `int mosquitto_sub_topic_tokenise(const char *subtopic, char ***topics, int *count)`. Shouldn't this `ref pointer` feature help...
I've just discovered `bump2version` when looking for a tool to bump version of Helm charts. And I have a question which may be related to this merge request: I would...
@martinm82 Yes, that's what I meant. Actually I think I've managed to have a working configuration (without this pull request): ``` [bumpversion] parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[A-Z]+))? serialize = {major}.{minor}.{patch}-{release} {major}.{minor}.{patch} search...
@martinm82 OK, good to know. But don't you find strange that this `PRODUCTION` entry has to be added, even though it's never used?!?
Coming from a RabbitMQ / Google Cloud PubSub background, I find it strange as well that MQTT messages are automatically ACK'ed, even if a problem occurred in the handler. The...
I've looked at other Paho implementations, and it seems that the C implementation is the only (other) one that supports explicit acknowledgement, via the return value of the [MQTTAsync_messageArrived](https://www.eclipse.org/paho/files/mqttdoc/MQTTAsync/html/_m_q_t_t_async_8h.html#a3918ead59b56816a8d7544def184e48e) function....
Thanks for your response! I suppose that using SWIG would indeed bring the full API to Python. But I personally have no time / knowledge on how to do it....
I just run into this issue recently, while trying to restore backups copied over from another GCS bucket. WAL-G reported the same `last_modified` for all backups: ``` $ wal-g backup-list...
Should someone also run into the same ControllerLinkBuilder related issue as I did, I confirm that the workaround mentioned in comment https://github.com/spring-projects/spring-hateoas/issues/222#issuecomment-309089747 works. For example something like: ```kotlin val link...
@jkroepke Maybe interesting to you: the Docker image of Helmfile now includes `kustomize`. https://github.com/roboll/helmfile/pull/1626