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

Commit 94f20fd

Browse files
Merge pull request #125 from rabbitmq/lrb-vesc-888
Add rabbit_stomp_connection_info module
2 parents f20b4de + a8c4497 commit 94f20fd

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
%% The contents of this file are subject to the Mozilla Public License
2+
%% Version 1.1 (the "License"); you may not use this file except in
3+
%% compliance with the License. You may obtain a copy of the License
4+
%% at http://www.mozilla.org/MPL/
5+
%%
6+
%% Software distributed under the License is distributed on an "AS IS"
7+
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
8+
%% the License for the specific language governing rights and
9+
%% limitations under the License.
10+
%%
11+
%% The Original Code is RabbitMQ.
12+
%%
13+
%% The Initial Developer of the Original Code is GoPivotal, Inc.
14+
%% Copyright (c) 2018 Pivotal Software, Inc. All rights reserved.
15+
%%
16+
-module(rabbit_stomp_connection_info).
17+
18+
%% Note: this is necessary to prevent code:get_object_code from
19+
%% backing up due to a missing module. See VESC-888.
20+
21+
%% API
22+
-export([additional_authn_params/4]).
23+
24+
additional_authn_params(_Creds, _VHost, _Pid, _Infos) ->
25+
[].

src/rabbit_stomp_reader.erl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
start_link(SupHelperPid, Ref, Sock, Configuration) ->
4545
Pid = proc_lib:spawn_link(?MODULE, init,
4646
[[SupHelperPid, Ref, Sock, Configuration]]),
47-
4847
{ok, Pid}.
4948

5049
info(Pid, InfoItems) ->

0 commit comments

Comments
 (0)