Skip to content

Commit

Permalink
fix: constant name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ngmr committed Jan 17, 2025
1 parent a97a7b0 commit 460eafd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.ibm.ws.sib.msgstore;

/*******************************************************************************
* Copyright (c) 2012, 2014 IBM Corporation and others.
/* ==============================================================================
* Copyright (c) 2012, 2025 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand All @@ -11,7 +9,10 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
* ==============================================================================
*/
package com.ibm.ws.sib.msgstore;


import com.ibm.ws.sib.utils.RuntimeInfo;

Expand Down Expand Up @@ -391,7 +392,7 @@ public static enum MaximumAllowedDeliveryDelayAction {
/* Persistence Layer Constants */
/*************************************************************************/
public static final String START_MODE = "STARTMODE"; // F008622--start
public static final String DEAFULT_START_MODE = "NORMAL"; //F008622-end
public static final String DEFAULT_START_MODE = "NORMAL"; //F008622-end
public static final String DEFAULT_DATABASE_NAME = "SIBDB";
public static final String DEFAULT_STOGROUP_NAME = "SIBSG";
public static final String DEFAULT_BUFPOOL_NAME = "BP1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2026,7 +2026,7 @@ public boolean checkAndUpdateMEOwner(MELockOwner owner)

SibTr.info(tc, "FILE_STORE_LOCK_ONE_OWNER_SIMS1566", new Object[] {storedOwner.getMeUUID(), storedOwner.getIncUUID()});
// F008622 -start
if(_ms.getProperty(MessageStoreConstants.START_MODE, MessageStoreConstants.DEAFULT_START_MODE).equalsIgnoreCase("RECOVERY"))
if(_ms.getProperty(MessageStoreConstants.START_MODE, MessageStoreConstants.DEFAULT_START_MODE).equalsIgnoreCase("RECOVERY"))
{
owner=new MELockOwner(storedOwner.getMeUUID(),storedOwner.getIncUUID(),storedOwner.getVersion(),storedOwner.getMigrationVersion(),"default");
}
Expand Down

0 comments on commit 460eafd

Please sign in to comment.