Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.0.0-beta3
-
Fix Version/s: 1.0
-
Component/s: None
-
Labels:None
-
Environment:liquidsoap from hg, parent: 2059:62dab79943fc tip
Description
test.liq:
set("server.telnet", 4)
set("server.telnet.port", 4321)
server.register("l", fun(x) -> "BOOM")
server.register("l", fun(x) -> "BOOM")
output.dummy(blank())
start it and connect to 4321 port with telnet:
$ liquidsoap test.liq
$ telnet localhost 4321
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
try to get help:
help
ERROR: Invalid_argument("equal: functional value")
END
set("server.telnet", 4)
set("server.telnet.port", 4321)
server.register("l", fun(x) -> "BOOM")
server.register("l", fun(x) -> "BOOM")
output.dummy(blank())
start it and connect to 4321 port with telnet:
$ liquidsoap test.liq
$ telnet localhost 4321
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
try to get help:
help
ERROR: Invalid_argument("equal: functional value")
END