Skip to content

Commit 2f5ef79

Browse files
Merge pull request #1949 from spring-operator/polish-urls-remaining-master
URL Cleanup (cherry picked from commit 626033a) Conflicts: include/amqqueue.hrl scripts/rabbitmq-queues src/amqqueue.erl src/amqqueue_v1.erl src/rabbit_backing_queue.erl src/rabbit_core_ff.erl src/rabbit_feature_flags.erl src/rabbit_ff_extra.erl src/rabbit_ff_registry.erl src/rabbit_fifo.erl src/rabbit_fifo_client.erl src/rabbit_queue_master_locator.erl src/rabbit_quorum_memory_manager.erl src/rabbit_quorum_queue.erl test/dead_lettering_SUITE.erl test/dynamic_qq_SUITE.erl test/feature_flags_SUITE.erl test/feature_flags_SUITE_data/my_plugin/src/my_plugin.erl test/publisher_confirms_parallel_SUITE.erl test/queue_parallel_SUITE.erl test/quorum_queue_SUITE.erl test/rabbitmq_queues_cli_integration_SUITE.erl test/single_active_consumer_SUITE.erl test/unit_queue_consumers_SUITE.erl
1 parent 3ab71e2 commit 2f5ef79

File tree

215 files changed

+343
-343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

215 files changed

+343
-343
lines changed

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ appropriate to the circumstances. Maintainers are obligated to maintain confiden
4040
with regard to the reporter of an incident.
4141

4242
This Code of Conduct is adapted from the
43-
[Contributor Covenant](http://contributor-covenant.org), version 1.3.0, available at
44-
[contributor-covenant.org/version/1/3/0/](http://contributor-covenant.org/version/1/3/0/)
43+
[Contributor Covenant](https://contributor-covenant.org), version 1.3.0, available at
44+
[contributor-covenant.org/version/1/3/0/](https://contributor-covenant.org/version/1/3/0/)

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Please see http://www.rabbitmq.com/download.html for links to guides
1+
Please see https://www.rabbitmq.com/download.html for links to guides
22
to installing RabbitMQ.

LICENSE-MPL-RabbitMQ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ EXHIBIT A -Mozilla Public License.
437437
``The contents of this file are subject to the Mozilla Public License
438438
Version 1.1 (the "License"); you may not use this file except in
439439
compliance with the License. You may obtain a copy of the License at
440-
http://www.mozilla.org/MPL/
440+
https://www.mozilla.org/MPL/
441441

442442
Software distributed under the License is distributed on an "AS IS"
443443
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
## Getting Help
2727

2828
* [RabbitMQ mailing list](https://groups.google.com/forum/#!forum/rabbitmq-users)
29-
* [Commercial support](https://rabbitmq.com/services.html) from [Pivotal](http://pivotal.io) for open source RabbitMQ
29+
* [Commercial support](https://rabbitmq.com/services.html) from [Pivotal](https://pivotal.io) for open source RabbitMQ
3030
* [Community Slack](https://rabbitmq-slack.herokuapp.com/)
3131
* `#rabbitmq` on Freenode
3232

check_xref

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
%% The contents of this file are subject to the Mozilla Public License
66
%% Version 1.1 (the "License"); you may not use this file except in
77
%% compliance with the License. You may obtain a copy of the License
8-
%% at http://www.mozilla.org/MPL/
8+
%% at https://www.mozilla.org/MPL/
99
%%
1010
%% Software distributed under the License is distributed on an "AS IS"
1111
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See

docs/README-for-packages

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ This is rabbitmq-server, a message broker implementing AMQP, STOMP and MQTT.
33
Most of the documentation for RabbitMQ is provided on the RabbitMQ web
44
site. You can see documentation for the current version at:
55

6-
http://www.rabbitmq.com/documentation.html
6+
https://www.rabbitmq.com/documentation.html
77

88
and for previous versions at:
99

10-
http://www.rabbitmq.com/previous.html
10+
https://www.rabbitmq.com/previous.html
1111

1212
Man pages are installed with this package. Of particular interest are
1313
rabbitmqctl(1), to interact with a running RabbitMQ server, and

docs/advanced.config.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
%% ----------------------------------------------------------------------------
55
%% Advanced Erlang Networking/Clustering Options.
66
%%
7-
%% See http://www.rabbitmq.com/clustering.html for details
7+
%% See https://www.rabbitmq.com/clustering.html for details
88
%% ----------------------------------------------------------------------------
99
%% Sets the net_kernel tick time.
1010
%% Please see http://erlang.org/doc/man/kernel_app.html and
11-
%% http://www.rabbitmq.com/nettick.html for further details.
11+
%% https://www.rabbitmq.com/nettick.html for further details.
1212
%%
1313
%% {kernel, [{net_ticktime, 60}]},
1414
%% ----------------------------------------------------------------------------
1515
%% RabbitMQ Shovel Plugin
1616
%%
17-
%% See http://www.rabbitmq.com/shovel.html for details
17+
%% See https://www.rabbitmq.com/shovel.html for details
1818
%% ----------------------------------------------------------------------------
1919

2020
{rabbitmq_shovel,
@@ -87,7 +87,7 @@
8787

8888
%% The LDAP plugin can perform a variety of queries against your
8989
%% LDAP server to determine questions of authorisation. See
90-
%% http://www.rabbitmq.com/ldap.html#authorisation for more
90+
%% https://www.rabbitmq.com/ldap.html#authorisation for more
9191
%% information.
9292

9393
%% Set the query to use when determining vhost access

docs/rabbitmq-diagnostics.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.\" The contents of this file are subject to the Mozilla Public License
33
.\" Version 1.1 (the "License"); you may not use this file except in
44
.\" compliance with the License. You may obtain a copy of the License
5-
.\" at http://www.mozilla.org/MPL/
5+
.\" at https://www.mozilla.org/MPL/
66
.\"
77
.\" Software distributed under the License is distributed on an "AS IS"
88
.\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See

docs/rabbitmq-echopid.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.\" The contents of this file are subject to the Mozilla Public License
33
.\" Version 1.1 (the "License"); you may not use this file except in
44
.\" compliance with the License. You may obtain a copy of the License
5-
.\" at http://www.mozilla.org/MPL/
5+
.\" at https://www.mozilla.org/MPL/
66
.\"
77
.\" Software distributed under the License is distributed on an "AS IS"
88
.\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See

docs/rabbitmq-env.conf.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.\" The contents of this file are subject to the Mozilla Public License
33
.\" Version 1.1 (the "License"); you may not use this file except in
44
.\" compliance with the License. You may obtain a copy of the License
5-
.\" at http://www.mozilla.org/MPL/
5+
.\" at https://www.mozilla.org/MPL/
66
.\"
77
.\" Software distributed under the License is distributed on an "AS IS"
88
.\" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See

0 commit comments

Comments
 (0)