Skip to content

Commit ba489ee

Browse files
committed
fix backport conflicts
1 parent 7f37a8e commit ba489ee

File tree

5 files changed

+1
-69
lines changed

5 files changed

+1
-69
lines changed

bazel/platforms/BUILD.bazel

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,24 +51,12 @@ platform(
5151
name = "erlang_linux_25_3_platform",
5252
constraint_values = [
5353
"@erlang_config//:erlang_25_3",
54-
"@elixir_config//:elixir_1_14",
55-
],
56-
parents = ["@rbe//config:platform"],
57-
)
58-
59-
platform(
60-
<<<<<<< HEAD
61-
=======
62-
name = "erlang_linux_26_platform",
63-
constraint_values = [
64-
"@erlang_config//:erlang_26",
6554
"@elixir_config//:elixir_1_15",
6655
],
6756
parents = ["@rbe//config:platform"],
6857
)
6958

7059
platform(
71-
>>>>>>> ba57c77a62 (Add elixir 1.15 and use with otp 26)
7260
name = "erlang_linux_git_master_platform",
7361
constraint_values = [
7462
"@erlang_config//:erlang_26_unknown",

deps/rabbitmq_cli/BUILD.bazel

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -78,38 +78,6 @@ rabbitmq_run(
7878
visibility = ["//visibility:public"],
7979
)
8080

81-
<<<<<<< HEAD
82-
=======
83-
rabbitmqctl_check_formatted_test(
84-
name = "check_formatted",
85-
size = "small",
86-
srcs = [
87-
".formatter.exs",
88-
"config/config.exs",
89-
"mix.exs",
90-
] + glob([
91-
"lib/**/*.ex",
92-
"test/**/*.exs",
93-
]),
94-
data = glob(["test/fixtures/**/*"]),
95-
target_compatible_with = select({
96-
"@platforms//os:macos": [
97-
"@platforms//os:macos",
98-
"@elixir_config//:elixir_1_15",
99-
],
100-
"//conditions:default": [
101-
"@platforms//os:linux",
102-
"@elixir_config//:elixir_1_15",
103-
],
104-
}),
105-
)
106-
107-
test_suite(
108-
name = "rabbitmqctl_check_formatted",
109-
tests = ["check_formatted"],
110-
)
111-
112-
>>>>>>> 7d9ea24eb2 (Run cli format check on elixir 1.15 only)
11381
plt(
11482
name = "deps_plt",
11583
apps = [

deps/rabbitmq_cli/lib/rabbitmq/cli/diagnostics/commands/remote_shell_command.ex

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,7 @@ defmodule RabbitMQ.CLI.Diagnostics.Commands.RemoteShellCommand do
1818
if :erlang.function_exported(:shell, :start_interactive, 1) do
1919
start_shell_on_otp_26_plus(node_name)
2020
else
21-
<<<<<<< HEAD
22-
_ = Supervisor.terminate_child(:kernel_sup, :user)
23-
Process.flag(:trap_exit, true)
24-
user_drv = :user_drv.start([~c"tty_sl -c -e", {node_name, :shell, :start, []}])
25-
Process.link(user_drv)
26-
27-
receive do
28-
{~c"EXIT", _user_drv, _} ->
29-
{:ok, "Disconnected from #{node_name}."}
30-
end
31-
=======
3221
start_shell_on_otp_25(node_name)
33-
>>>>>>> 45ba92e096 (Sync remote_shell with main for OTP 25/26 compat)
3422
end
3523
end
3624

@@ -67,4 +55,4 @@ defmodule RabbitMQ.CLI.Diagnostics.Commands.RemoteShellCommand do
6755
{:ok, "Disconnected from #{node_name}."}
6856
end
6957
end
70-
end
58+
end

deps/rabbitmq_cli/test/ctl/enable_feature_flag_test.exs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ defmodule EnableFeatureFlagCommandTest do
1919

2020
new_feature_flags = %{
2121
@feature_flag => %{
22-
<<<<<<< HEAD
23-
desc: "My feature flag",
24-
=======
2522
desc: ~c"My feature flag",
26-
>>>>>>> 65a3f77932 (Run 'mix format' with elixir 1.15.2)
2723
provided_by: :EnableFeatureFlagCommandTest,
2824
stability: :stable
2925
}

deps/rabbitmq_cli/test/ctl/list_feature_flags_command_test.exs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,12 @@ defmodule ListFeatureFlagsCommandTest do
2121

2222
new_feature_flags = %{
2323
@flag1 => %{
24-
<<<<<<< HEAD
25-
desc: "My feature flag #1",
26-
=======
2724
desc: ~c"My feature flag #1",
28-
>>>>>>> 65a3f77932 (Run 'mix format' with elixir 1.15.2)
2925
provided_by: :ListFeatureFlagsCommandTest,
3026
stability: :stable
3127
},
3228
@flag2 => %{
33-
<<<<<<< HEAD
34-
desc: "My feature flag #2",
35-
=======
3629
desc: ~c"My feature flag #2",
37-
>>>>>>> 65a3f77932 (Run 'mix format' with elixir 1.15.2)
3830
provided_by: :ListFeatureFlagsCommandTest,
3931
stability: :stable
4032
}

0 commit comments

Comments
 (0)