NO-JIRA fixing spelling udpate as update
This commit is contained in:
parent
cfd032799c
commit
7137252c5d
|
@ -77,7 +77,7 @@ public final class MessageCounterInfo {
|
||||||
final int depthDelta,
|
final int depthDelta,
|
||||||
final String lastAddTimestamp,
|
final String lastAddTimestamp,
|
||||||
final String lastAckTimestamp,
|
final String lastAckTimestamp,
|
||||||
final String udpateTimestamp) {
|
final String updateTimestamp) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.subscription = subscription;
|
this.subscription = subscription;
|
||||||
this.durable = durable;
|
this.durable = durable;
|
||||||
|
@ -87,7 +87,7 @@ public final class MessageCounterInfo {
|
||||||
this.depthDelta = depthDelta;
|
this.depthDelta = depthDelta;
|
||||||
this.lastAddTimestamp = lastAddTimestamp;
|
this.lastAddTimestamp = lastAddTimestamp;
|
||||||
this.lastAckTimestamp = lastAckTimestamp;
|
this.lastAckTimestamp = lastAckTimestamp;
|
||||||
this.updateTimestamp = udpateTimestamp;
|
this.updateTimestamp = updateTimestamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public --------------------------------------------------------
|
// Public --------------------------------------------------------
|
||||||
|
|
|
@ -27,7 +27,7 @@ import org.apache.activemq.artemis.core.server.group.UnproposalListener;
|
||||||
|
|
||||||
public interface Bindings extends UnproposalListener {
|
public interface Bindings extends UnproposalListener {
|
||||||
|
|
||||||
// this is to inform the parent there was an udpate on the bindings
|
// this is to inform the parent there was an update on the bindings
|
||||||
void updated(QueueBinding binding);
|
void updated(QueueBinding binding);
|
||||||
|
|
||||||
Collection<Binding> getBindings();
|
Collection<Binding> getBindings();
|
||||||
|
|
|
@ -915,7 +915,7 @@ Message counters give additional information about the queues:
|
||||||
|
|
||||||
The timestamp of the last time a message from the queue was acknowledged
|
The timestamp of the last time a message from the queue was acknowledged
|
||||||
|
|
||||||
- `udpateTimestamp`
|
- `updateTimestamp`
|
||||||
|
|
||||||
The timestamp of the last message counter update
|
The timestamp of the last message counter update
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@ public class UpdateQueueTest extends ActiveMQTestBase {
|
||||||
|
|
||||||
Assert.assertEquals(originalID, server.locateQueue(ADDRESS).getID());
|
Assert.assertEquals(originalID, server.locateQueue(ADDRESS).getID());
|
||||||
|
|
||||||
// stopping, restarting to make sure the system will not create an extra record without an udpate
|
// stopping, restarting to make sure the system will not create an extra record without an update
|
||||||
server.stop();
|
server.stop();
|
||||||
server.start();
|
server.start();
|
||||||
validateBindingRecords(server, JournalRecordIds.QUEUE_BINDING_RECORD, 2);
|
validateBindingRecords(server, JournalRecordIds.QUEUE_BINDING_RECORD, 2);
|
||||||
|
@ -188,7 +188,7 @@ public class UpdateQueueTest extends ActiveMQTestBase {
|
||||||
|
|
||||||
Assert.assertEquals(originalID, server.locateQueue(ADDRESS).getID());
|
Assert.assertEquals(originalID, server.locateQueue(ADDRESS).getID());
|
||||||
|
|
||||||
// stopping, restarting to make sure the system will not create an extra record without an udpate
|
// stopping, restarting to make sure the system will not create an extra record without an update
|
||||||
server.stop();
|
server.stop();
|
||||||
server.start();
|
server.start();
|
||||||
validateBindingRecords(server, JournalRecordIds.QUEUE_BINDING_RECORD, 2);
|
validateBindingRecords(server, JournalRecordIds.QUEUE_BINDING_RECORD, 2);
|
||||||
|
|
Loading…
Reference in New Issue