Spelling fixes
This commit is contained in:
parent
ac885db706
commit
b2a9be1373
|
@ -11,7 +11,7 @@ still unsolved. This is specially true for the ['site' plugin](https://maven.apa
|
||||||
|
|
||||||
#### Upgrading the `gitbook` version and regenerating the `npm-shrinkwrap.json` file
|
#### Upgrading the `gitbook` version and regenerating the `npm-shrinkwrap.json` file
|
||||||
The full release uses `gitbook` to build a static website from the documentation. This is automatically installed using
|
The full release uses `gitbook` to build a static website from the documentation. This is automatically installed using
|
||||||
an `NPM` plugin and is controled via a package.json file.
|
an `NPM` plugin and is controlled via a package.json file.
|
||||||
|
|
||||||
Install `NPM` using the instructions below
|
Install `NPM` using the instructions below
|
||||||
|
|
||||||
|
|
|
@ -367,7 +367,7 @@ application state) using a database. N.B. Address full policy Paging (See: [The
|
||||||
supported with the JDBC persistence layer.
|
supported with the JDBC persistence layer.
|
||||||
|
|
||||||
Using the ActiveMQ Artemis File Journal is the recommended configuration as it offers higher levels of performance and is
|
Using the ActiveMQ Artemis File Journal is the recommended configuration as it offers higher levels of performance and is
|
||||||
more mature. The JDBC persistence layer is targetted to those users who must use a database e.g. due to internal company
|
more mature. The JDBC persistence layer is targeted to those users who must use a database e.g. due to internal company
|
||||||
policy.
|
policy.
|
||||||
|
|
||||||
ActiveMQ Artemis currently has support for a limited number of database vendors (older versions may work but mileage may
|
ActiveMQ Artemis currently has support for a limited number of database vendors (older versions may work but mileage may
|
||||||
|
|
|
@ -76,7 +76,7 @@ public class InitalReconnectDelayTest extends OpenwireArtemisBaseTest {
|
||||||
producer.send(session.createTextMessage("TEST"));
|
producer.send(session.createTextMessage("TEST"));
|
||||||
end = (new Date()).getTime();
|
end = (new Date()).getTime();
|
||||||
|
|
||||||
//Inital reconnection should kick in and be darned close to what we expected
|
//Initial reconnection should kick in and be darned close to what we expected
|
||||||
LOG.info("Failover took " + (end - start) + " ms.");
|
LOG.info("Failover took " + (end - start) + " ms.");
|
||||||
assertTrue("Failover took " + (end - start) + " ms and should be > 14000.", (end - start) > 14000);
|
assertTrue("Failover took " + (end - start) + " ms and should be > 14000.", (end - start) > 14000);
|
||||||
connection.close();
|
connection.close();
|
||||||
|
|
|
@ -293,7 +293,7 @@ public abstract class AmqpAbstractResource<E extends Endpoint> implements AmqpRe
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* When aborting the open operation, and there isnt an error condition,
|
* When aborting the open operation, and there isn't an error condition,
|
||||||
* provided by the peer, the returned exception will be used instead.
|
* provided by the peer, the returned exception will be used instead.
|
||||||
* A subclass may override this method to provide alternative behaviour.
|
* A subclass may override this method to provide alternative behaviour.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -25,10 +25,10 @@ import org.apache.qpid.proton.amqp.UnsignedLong;
|
||||||
*/
|
*/
|
||||||
public class AmqpUnknownFilterType implements DescribedType {
|
public class AmqpUnknownFilterType implements DescribedType {
|
||||||
|
|
||||||
public static final AmqpUnknownFilterType UNKOWN_FILTER = new AmqpUnknownFilterType();
|
public static final AmqpUnknownFilterType UNKNOWN_FILTER = new AmqpUnknownFilterType();
|
||||||
|
|
||||||
public static final UnsignedLong UNKNOWN_FILTER_CODE = UnsignedLong.valueOf(0x0000468C00000099L);
|
public static final UnsignedLong UNKNOWN_FILTER_CODE = UnsignedLong.valueOf(0x0000468C00000099L);
|
||||||
public static final Symbol UNKNOWN_FILTER_NAME = Symbol.valueOf("apache.org:unkown-filter:string");
|
public static final Symbol UNKNOWN_FILTER_NAME = Symbol.valueOf("apache.org:unknown-filter:string");
|
||||||
public static final Object[] UNKNOWN_FILTER_IDS = new Object[]{UNKNOWN_FILTER_CODE, UNKNOWN_FILTER_NAME};
|
public static final Object[] UNKNOWN_FILTER_IDS = new Object[]{UNKNOWN_FILTER_CODE, UNKNOWN_FILTER_NAME};
|
||||||
|
|
||||||
private final String payload;
|
private final String payload;
|
||||||
|
|
Loading…
Reference in New Issue