Skip to content
This repository was archived by the owner on Nov 16, 2020. It is now read-only.

Commit b23718a

Browse files
committed
Fix port in schema
Follow-up to #50
1 parent 0e1ef9b commit b23718a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ cover/
33
ebin/
44
logs/
55
plugins/
6+
deps/
67
test/*.beam
78
rabbitmq_web_mqtt.d
89
*.swp
910

10-
test/config_schema_SUITE_data/schema/
11+
test/config_schema_SUITE_data/schema/

priv/schema/rabbitmq_web_mqtt.schema

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Setting = cuttlefish:conf_get("web_mqtt.tcp.listener", Conf, undefined),
2222
case Setting of
2323
none -> [];
24-
undefined -> [{port, 15674}];
24+
undefined -> [{port, 15675}];
2525
{Ip, Port} when is_list(Ip), is_integer(Port) ->
2626
[{ip, Ip}, {port, Port}]
2727
end

0 commit comments

Comments
 (0)