diff options
| author | Ayanda-D <ayanda.dube@erlang-solutions.com> | 2020-07-10 17:59:56 +0100 |
|---|---|---|
| committer | Michael Klishin <michael@clojurewerkz.org> | 2020-08-24 20:14:31 +0300 |
| commit | 5f4e7b732753d94728c3d93d240fe4100cf66ae1 (patch) | |
| tree | 4bf34aa59854c2496d20729432d7920275e5897c | |
| parent | 441f04a59cc1b2431ea054606cbf28a4faa9ae36 (diff) | |
| download | rabbitmq-server-git-5f4e7b732753d94728c3d93d240fe4100cf66ae1.tar.gz | |
Switch to Mozilla Public License 2.0 (MPL 2.0)
Ref: #2408
| -rw-r--r-- | src/internal_user.erl | 17 | ||||
| -rw-r--r-- | src/internal_user_v1.erl | 18 | ||||
| -rw-r--r-- | src/rabbit_channel_tracking.erl | 17 | ||||
| -rw-r--r-- | src/rabbit_channel_tracking_handler.erl | 17 | ||||
| -rw-r--r-- | src/rabbit_tracking.erl | 17 | ||||
| -rw-r--r-- | test/per_user_connection_channel_limit_SUITE.erl | 17 | ||||
| -rw-r--r-- | test/per_user_connection_channel_limit_partitions_SUITE.erl | 17 | ||||
| -rw-r--r-- | test/per_user_connection_channel_tracking_SUITE.erl | 17 |
8 files changed, 32 insertions, 105 deletions
diff --git a/src/internal_user.erl b/src/internal_user.erl index 08d3d35542..35b67741ab 100644 --- a/src/internal_user.erl +++ b/src/internal_user.erl @@ -1,17 +1,8 @@ -%% The contents of this file are subject to the Mozilla Public License -%% Version 1.1 (the "License"); you may not use this file except in -%% compliance with the License. You may obtain a copy of the License -%% at https://www.mozilla.org/MPL/ +%% This Source Code Form is subject to the terms of the Mozilla Public +%% License, v. 2.0. If a copy of the MPL was not distributed with this +%% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -%% the License for the specific language governing rights and -%% limitations under the License. -%% -%% The Original Code is RabbitMQ. -%% -%% The Initial Developer of the Original Code is GoPivotal, Inc. -%% Copyright (c) 2018-2020 VMware, Inc. or its affiliates. All rights reserved. +%% Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(internal_user). diff --git a/src/internal_user_v1.erl b/src/internal_user_v1.erl index fca077f0c5..0a290e5c53 100644 --- a/src/internal_user_v1.erl +++ b/src/internal_user_v1.erl @@ -1,17 +1,8 @@ -%% The contents of this file are subject to the Mozilla Public License -%% Version 1.1 (the "License"); you may not use this file except in -%% compliance with the License. You may obtain a copy of the License -%% at https://www.mozilla.org/MPL/ +%% This Source Code Form is subject to the terms of the Mozilla Public +%% License, v. 2.0. If a copy of the MPL was not distributed with this +%% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -%% the License for the specific language governing rights and -%% limitations under the License. -%% -%% The Original Code is RabbitMQ. -%% -%% The Initial Developer of the Original Code is GoPivotal, Inc. -%% Copyright (c) 2018-2020 VMware, Inc. or its affiliates. All rights reserved. +%% Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(internal_user_v1). @@ -145,4 +136,3 @@ update_limits(_, User, _) -> -spec clear_limits(internal_user()) -> internal_user(). clear_limits(User) -> User. - diff --git a/src/rabbit_channel_tracking.erl b/src/rabbit_channel_tracking.erl index aac3b92e1b..d75ff6dfb8 100644 --- a/src/rabbit_channel_tracking.erl +++ b/src/rabbit_channel_tracking.erl @@ -1,17 +1,8 @@ -%% The contents of this file are subject to the Mozilla Public License -%% Version 1.1 (the "License"); you may not use this file except in -%% compliance with the License. You may obtain a copy of the License -%% at https://www.mozilla.org/MPL/ +%% This Source Code Form is subject to the terms of the Mozilla Public +%% License, v. 2.0. If a copy of the MPL was not distributed with this +%% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -%% the License for the specific language governing rights and -%% limitations under the License. -%% -%% The Original Code is RabbitMQ. -%% -%% The Initial Developer of the Original Code is GoPivotal, Inc. -%% Copyright (c) 2007-2020 VMware, Inc. or its affiliates. All rights reserved. +%% Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(rabbit_channel_tracking). diff --git a/src/rabbit_channel_tracking_handler.erl b/src/rabbit_channel_tracking_handler.erl index b2556b8742..83e5343a7e 100644 --- a/src/rabbit_channel_tracking_handler.erl +++ b/src/rabbit_channel_tracking_handler.erl @@ -1,17 +1,8 @@ -%% The contents of this file are subject to the Mozilla Public License -%% Version 1.1 (the "License"); you may not use this file except in -%% compliance with the License. You may obtain a copy of the License -%% at https://www.mozilla.org/MPL/ +%% This Source Code Form is subject to the terms of the Mozilla Public +%% License, v. 2.0. If a copy of the MPL was not distributed with this +%% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -%% the License for the specific language governing rights and -%% limitations under the License. -%% -%% The Original Code is RabbitMQ. -%% -%% The Initial Developer of the Original Code is GoPivotal, Inc. -%% Copyright (c) 2007-2020 VMware, Inc. or its affiliates. All rights reserved. +%% Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(rabbit_channel_tracking_handler). diff --git a/src/rabbit_tracking.erl b/src/rabbit_tracking.erl index f4cb647af2..f17778d987 100644 --- a/src/rabbit_tracking.erl +++ b/src/rabbit_tracking.erl @@ -1,17 +1,8 @@ -%% The contents of this file are subject to the Mozilla Public License -%% Version 1.1 (the "License"); you may not use this file except in -%% compliance with the License. You may obtain a copy of the License -%% at https://www.mozilla.org/MPL/ +%% This Source Code Form is subject to the terms of the Mozilla Public +%% License, v. 2.0. If a copy of the MPL was not distributed with this +%% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See -%% the License for the specific language governing rights and -%% limitations under the License. -%% -%% The Original Code is RabbitMQ. -%% -%% The Initial Developer of the Original Code is GoPivotal, Inc. -%% Copyright (c) 2007-2020 VMware, Inc. or its affiliates. All rights reserved. +%% Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(rabbit_tracking). diff --git a/test/per_user_connection_channel_limit_SUITE.erl b/test/per_user_connection_channel_limit_SUITE.erl index 6faf7b9af4..c15d0dbd77 100644 --- a/test/per_user_connection_channel_limit_SUITE.erl +++ b/test/per_user_connection_channel_limit_SUITE.erl @@ -1,17 +1,8 @@ -%% The contents of this file are subject to the Mozilla Public License -%% Version 1.1 (the "License"); you may not use this file except in -%% compliance with the License. You may obtain a copy of the License at -%% https://www.mozilla.org/MPL/ +%% This Source Code Form is subject to the terms of the Mozilla Public +%% License, v. 2.0. If a copy of the MPL was not distributed with this +%% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -%% License for the specific language governing rights and limitations -%% under the License. -%% -%% The Original Code is RabbitMQ. -%% -%% The Initial Developer of the Original Code is GoPivotal, Inc. -%% Copyright (c) 2011-2020 VMware, Inc. or its affiliates. All rights reserved. +%% Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(per_user_connection_channel_limit_SUITE). diff --git a/test/per_user_connection_channel_limit_partitions_SUITE.erl b/test/per_user_connection_channel_limit_partitions_SUITE.erl index d737a4f51e..32af9ce9a1 100644 --- a/test/per_user_connection_channel_limit_partitions_SUITE.erl +++ b/test/per_user_connection_channel_limit_partitions_SUITE.erl @@ -1,17 +1,8 @@ -%% The contents of this file are subject to the Mozilla Public License -%% Version 1.1 (the "License"); you may not use this file except in -%% compliance with the License. You may obtain a copy of the License at -%% https://www.mozilla.org/MPL/ +%% This Source Code Form is subject to the terms of the Mozilla Public +%% License, v. 2.0. If a copy of the MPL was not distributed with this +%% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -%% License for the specific language governing rights and limitations -%% under the License. -%% -%% The Original Code is RabbitMQ. -%% -%% The Initial Developer of the Original Code is GoPivotal, Inc. -%% Copyright (c) 2011-2020 VMware, Inc. or its affiliates. All rights reserved. +%% Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(per_user_connection_channel_limit_partitions_SUITE). diff --git a/test/per_user_connection_channel_tracking_SUITE.erl b/test/per_user_connection_channel_tracking_SUITE.erl index 0ee320ab04..674a2e4177 100644 --- a/test/per_user_connection_channel_tracking_SUITE.erl +++ b/test/per_user_connection_channel_tracking_SUITE.erl @@ -1,17 +1,8 @@ -%% The contents of this file are subject to the Mozilla Public License -%% Version 1.1 (the "License"); you may not use this file except in -%% compliance with the License. You may obtain a copy of the License at -%% https://www.mozilla.org/MPL/ +%% This Source Code Form is subject to the terms of the Mozilla Public +%% License, v. 2.0. If a copy of the MPL was not distributed with this +%% file, You can obtain one at https://mozilla.org/MPL/2.0/. %% -%% Software distributed under the License is distributed on an "AS IS" -%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -%% License for the specific language governing rights and limitations -%% under the License. -%% -%% The Original Code is RabbitMQ. -%% -%% The Initial Developer of the Original Code is GoPivotal, Inc. -%% Copyright (c) 2011-2020 VMware, Inc. or its affiliates. All rights reserved. +%% Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved. %% -module(per_user_connection_channel_tracking_SUITE). |
