Skip to content

Commit

Permalink
README and minor code fix (apache#598)
Browse files Browse the repository at this point in the history
Fix README link and cleanups
  • Loading branch information
Marcono1234 authored Jan 5, 2021
1 parent abc3ca7 commit 9d220c2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ Getting Started
To help you get started, try the following links:

Getting Started
- http://activemq.apache.org/version-5-getting-started.html
- https://activemq.apache.org/version-5-getting-started.html

Building
- http://activemq.apache.org/version-5-getting-started.html#GettingStarted-WindowsSourceInstallation
- http://activemq.apache.org/version-5-getting-started.html#GettingStarted-UnixSourceInstallation
- [Windows](https://activemq.apache.org/version-5-getting-started.html#installation-procedure-for-windows)
- [Unix](https://activemq.apache.org/version-5-getting-started.html#installation-procedure-for-unix)

Examples
- http://activemq.apache.org/examples.html
- https://activemq.apache.org/examples.html

We welcome contributions of all kinds, for details of how you can help
http://activemq.apache.org/contributing.html
https://activemq.apache.org/contributing.html

Please refer to the website for details of finding the issue tracker,
email lists, wiki or IRC channel at http://activemq.apache.org/
email lists, wiki or IRC channel at https://activemq.apache.org/

Please help us make Apache ActiveMQ better - we appreciate any feedback
you may have.
Expand All @@ -32,15 +32,15 @@ Licensing
=======================================================================

This software is licensed under the terms you may find in the file
named "LICENSE" in this directory.
named "[LICENSE](./LICENSE)" in this directory.

This distribution includes cryptographic software. The country in
which you currently reside may have restrictions on the import,
possession, use, and/or re-export to another country, of
encryption software. BEFORE using any encryption software, please
check your country's laws, regulations and policies concerning the
import, possession, or use, and re-export of encryption software, to
see if this is permitted. See <http://www.wassenaar.org/> for more
see if this is permitted. See <https://www.wassenaar.org/> for more
information.

The U.S. Government Department of Commerce, Bureau of Industry and
Expand All @@ -58,6 +58,6 @@ Licensing

ActiveMQ supports the use of SSL TCP connections when used with
with a JVM supporting the Java Cryptography extensions
<http://www.oracle.com/technetwork/java/javase/tech/index-jsp-136007.html>.
<https://www.oracle.com/java/technologies/javase/javase-tech-security.html>.
ActiveMQ does not include these libraries itself, but is designed to use them.

Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void run() {
if (msg != null) {
connection.send(createAck(consumerInfo, msg, counter, MessageAck.STANDARD_ACK_TYPE));
} else if (receiveCounter.get() < consumeCount) {
LOG.info("Consumer stall, waiting for message #" + receiveCounter.get() + 1);
LOG.info("Consumer stall, waiting for message #" + (receiveCounter.get() + 1));
}
}

Expand Down

0 comments on commit 9d220c2

Please sign in to comment.