Skip to content

Commit

Permalink
Merge pull request #1654 from mohanachandran-s/release-1.2.2
Browse files Browse the repository at this point in the history
MOSIP-36480 - Removed the DSL specific properties from kernel and fixed issues
  • Loading branch information
lsivanand authored Oct 18, 2024
2 parents f5be0c7 + b66a51e commit 1ad81f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2147,7 +2147,7 @@ protected Response getWithPathParamAndCookie(String url, String jsonInput, boole
map.remove(GlobalConstants.VERIFIEDTRANSACTIONID);
}

if (map.containsKey(GlobalConstants.IDV_TRANSACTION_ID)) {
if (map != null && map.containsKey(GlobalConstants.IDV_TRANSACTION_ID)) {
headerTransactionID = map.get(GlobalConstants.IDV_TRANSACTION_ID).toString();
cookiesMap.put(GlobalConstants.IDV_TRANSACTION_ID_KEY, headerTransactionID);
cookiesMap.put(GlobalConstants.XSRF_TOKEN, token);
Expand Down
16 changes: 0 additions & 16 deletions apitest-commons/src/main/resources/config/Kernel.properties
Original file line number Diff line number Diff line change
Expand Up @@ -217,22 +217,6 @@ master_db_schema=master
ida_db_schema=ida


#------------------------- DSL specific proprties ------------------------#
#------------------------- We need to see how to have DSL specific proprties file ------------------------#
packetUtilityBaseUrl=http://localhost:8080
mountPathForScenario=D:/centralized/mountvolume
mountPath=/home/mosip/mountvolume
# Add scenarios to skip from automation and server side
# supported values "S-scnearioNumber" for server side and "A-scnearioNumber" for automation
scenariosToSkip=
# Add scenarios to include in the the execution list
# Empty if we want to execute all the scenarios---
scenariosToExecute=
# supported values yes or no
useExternalScenarioSheet=yes
# supported values are 1 to 8
threadCount=1

#------------------------ Generic properties ------------------------#
enableDebug=yes
preconfiguredOtp=111111
Expand Down

0 comments on commit 1ad81f2

Please sign in to comment.