Skip to content

Commit 3521447

Browse files
Clean up
1 parent 82caba4 commit 3521447

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

deps/oauth2_client/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ PROJECT = oauth2_client
22
PROJECT_DESCRIPTION = OAuth2 client from the RabbitMQ Project
33

44
BUILD_DEPS = rabbit
5-
DEPS = rabbit_common jose
5+
DEPS = rabbit_common jose
66
TEST_DEPS = rabbitmq_ct_helpers cowboy
77
LOCAL_DEPS = ssl inets crypto public_key
88

99
PLT_APPS = rabbit
1010

11-
1211
DEP_EARLY_PLUGINS = rabbit_common/mk/rabbitmq-early-plugin.mk
1312
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk
1413

deps/oauth2_client/include/types.hrl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,5 @@
100100
id :: string(),
101101
type :: hs256 | rs256,
102102
key :: option(#{binary() => binary()})
103-
% private_key :: option(binary()),
104-
% public_key :: option(binary())
105103
}).
106104
-type signing_key() :: #signing_key{}.

deps/oauth2_client/test/system_SUITE.erl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,6 @@ start_https_oauth_server(Port, CertsDir, Expectations) when is_list(Expectations
853853

854854
start_https_oauth_server(Port, CertsDir, #{request := #{path := Path}} = Expected) ->
855855
Dispatch = cowboy_router:compile([{'_', [{Path, oauth_http_mock, Expected}]}]),
856-
ct:log("start_https_oauth_server"),
857856
{ok, _} = cowboy:start_tls(
858857
mock_http_auth_listener,
859858
[{port, Port},
@@ -863,7 +862,6 @@ start_https_oauth_server(Port, CertsDir, #{request := #{path := Path}} = Expecte
863862
#{env => #{dispatch => Dispatch}}).
864863

865864
stop_https_auth_server() ->
866-
ct:log("stop_https_auth_server"),
867865
cowboy:stop_listener(mock_http_auth_listener).
868866

869867
-spec ssl_options(ssl:verify_type(), boolean(), file:filename()) -> list().

0 commit comments

Comments
 (0)