File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ defmodule RabbitMQ.CLI.Ctl.Commands.DecodeCommand do
86
86
{ :ok , result }
87
87
catch
88
88
_ , _ ->
89
+ IO . inspect ( __STACKTRACE__ )
89
90
{ :error ,
90
91
"Failed to decrypt the value. Things to check: is the passphrase correct? Are the cipher and hash algorithms the same as those used for encryption?" }
91
92
end
@@ -109,6 +110,7 @@ defmodule RabbitMQ.CLI.Ctl.Commands.DecodeCommand do
109
110
{ :ok , result }
110
111
catch
111
112
_ , _ ->
113
+ IO . inspect ( __STACKTRACE__ )
112
114
{ :error ,
113
115
"Failed to decrypt the value. Things to check: is the passphrase correct? Are the cipher and hash algorithms the same as those used for encryption?" }
114
116
end
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ defmodule RabbitMQ.CLI.Ctl.Commands.EncodeCommand do
77
77
{ :ok , result }
78
78
catch
79
79
_ , _ ->
80
+ IO . inspect ( __STACKTRACE__ )
80
81
{ :error , "Error during cipher operation" }
81
82
end
82
83
end
@@ -99,6 +100,7 @@ defmodule RabbitMQ.CLI.Ctl.Commands.EncodeCommand do
99
100
{ :ok , result }
100
101
catch
101
102
_ , _ ->
103
+ IO . inspect ( __STACKTRACE__ )
102
104
{ :error , "Error during cipher operation" }
103
105
end
104
106
end
@@ -115,6 +117,7 @@ defmodule RabbitMQ.CLI.Ctl.Commands.EncodeCommand do
115
117
{ :ok , result }
116
118
catch
117
119
_ , _ ->
120
+ IO . inspect ( __STACKTRACE__ )
118
121
{ :error , "Error during cipher operation" }
119
122
end
120
123
end
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ defmodule RabbitMQ.CLI.Ctl.Commands.EncryptConfValueCommand do
97
97
{ :ok , result }
98
98
catch
99
99
_ , _ ->
100
+ IO . inspect ( __STACKTRACE__ )
100
101
{ :error , "Error during cipher operation" }
101
102
end
102
103
end
@@ -112,6 +113,7 @@ defmodule RabbitMQ.CLI.Ctl.Commands.EncryptConfValueCommand do
112
113
{ :ok , result }
113
114
catch
114
115
_ , _ ->
116
+ IO . inspect ( __STACKTRACE__ )
115
117
{ :error , "Error during cipher operation" }
116
118
end
117
119
end
You can’t perform that action at this time.
0 commit comments