-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PrecompileMQTT payload contains temporary socket name invalid in Windows #13
Comments
Might be the reason for this issue in MQTT.jl. |
Without the fix, under Windows, I get this:
|
divbyzerofordummies
pushed a commit
to divbyzerofordummies/MQTTClient.jl
that referenced
this issue
Jan 31, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When precompiling
PrecompileMQTT
, the precompile workload creates aMQTTClient.MockMQTTBroker
by providing it a socket name/tmp/testmqtt.sock
.This name is then given as an argument to the
listen
function of theSockets
library, which creates aPipeServer
and binds it to the given path:However, according to here,
A valid pipe name under Windows could be (?)
At least this worked for me.
Version: 0.3.1 (specifically, Git hash 23f5429
The text was updated successfully, but these errors were encountered: