Skip to content

Commit 3f9e6f9

Browse files
committed
Resolved additional errors from merge
Leaving MQTT alone, as this branch does not contain #5895, which fixed a great many dialyzer warnings.
1 parent bca40c6 commit 3f9e6f9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

deps/rabbitmq_consistent_hash_exchange/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ plt(
4444
apps = ["mnesia"],
4545
libs = ["//deps/rabbitmq_cli:elixir"],
4646
plt = "//:base_plt",
47-
deps = ["//deps/rabbitmq_cli:elixir"] + BUILD_DEPS + DEPS,
47+
deps = ["//deps/rabbitmq_cli:elixir"] + BUILD_DEPS + DEPS + RUNTIME_DEPS,
4848
)
4949

5050
dialyze(

deps/rabbitmq_mqtt/BUILD.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ DEPS = [
5252
"@ranch//:erlang_app",
5353
]
5454

55-
EXTRA_APPS = [ "ssl" ]
55+
RUNTIME_DEPS = [
56+
"//deps/rabbit:erlang_app",
57+
]
5658

5759
rabbitmq_app(
5860
app_description = APP_DESCRIPTION,
@@ -61,8 +63,8 @@ rabbitmq_app(
6163
app_module = APP_MODULE,
6264
app_name = APP_NAME,
6365
build_deps = BUILD_DEPS,
66+
runtime_deps = RUNTIME_DEPS,
6467
deps = DEPS,
65-
extra_apps = EXTRA_APPS,
6668
)
6769

6870
xref(
@@ -71,10 +73,8 @@ xref(
7173

7274
plt(
7375
name = "base_plt",
74-
plt = "//:base_plt",
75-
apps = EXTRA_APPS,
7676
libs = ["//deps/rabbitmq_cli:elixir"],
77-
deps = ["//deps/rabbitmq_cli:elixir"] + BUILD_DEPS + DEPS,
77+
deps = ["//deps/rabbitmq_cli:elixir"] + BUILD_DEPS + DEPS + RUNTIME_DEPS,
7878
)
7979

8080
dialyze(

0 commit comments

Comments
 (0)