malamute icon indicating copy to clipboard operation
malamute copied to clipboard

The ZeroMQ Enterprise Messaging Broker

Results 28 malamute issues
Sort by recently updated
recently updated
newest added

This issue is similar to the issue in `czmq` that I reported: https://github.com/zeromq/czmq/issues/2280 with the exception I have only tried malamute on Ubuntu 22.04 so far. Please see the log...

Following the discussion at https://github.com/zeromq/malamute/pull/214 it seems like there was consensus that there should be no draft APIs as of 1.0, and 1.1 was suppose to fix this issue. However,...

In the `mlm_mailbox_bounded.c` under the function `mlm_mailbox_bounded_test` the following code runs: ``` void *logger = zsys_socket (ZMQ_SUB, NULL, 0); ... zsys_close (logger, NULL, 0); ``` But results in the test...

libsodium no longer wants people to use `master` because > The master branch is broken, untested, unfinished development code that you should never use unless you are planning to contribute...

I have a producer and consumer, I thinked that Malamute store mailbox messages on disc to 'workdir' that noticed in cfg-file. But when we restart Malamute, messages, that hasn't received...

I have a software project that uses CZMQ quite extensively and now have a need for a subset of the messaging in the underlying architecture to have a broker involved...

Assigning character '\*' as regex pattern to mlm_client_set_consumer () breaks the stream, to which it is subscribing. Not even the already subscribed clients receive nothing. This does happen with character...

I'm facing time to time some issue when the server looping (and leaking) on a "invalid command" message. I instrumented this message in order to know which command and which...

sorry for poor english. in some really busy mlm server,stream message may block for quite long time. it's easy to test,keep send random mailbox/queue/stream message in a thread,recv message in...

Malamute cores if 2 clients connect with the same address instead of expiring the older client. Here is patch. Test case for crash is below. Thanks. ``` diff --git a/src/mlm_server.c...