Skip to content

Commit f537535

Browse files
Updated arguments for NETSS cmd file (#67)
1 parent 0d1912a commit f537535

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ This architecture ensure the STLT can make a secure connection to CDC database w
3131
- NBS_NND_CRON_TIME_ZONE: Cron timezone (ex: UTC)
3232
- NETSS Message Processor ENV:
3333
- NBS_NND_CRON: Cron Scheduler (ex: * * * * * *)
34-
- NND_FILE_LOCATION: Path to output directory on the setup machine (ex: /Users/UserName/Desktop/LOG)
35-
- NND_PRIOR: prior date indicator (ex: either T or F)
36-
- NND_DATE: date value (format: 12/30/2023)
34+
- NETSS_FILE_LOCATION: Path to output directory on the setup machine (ex: /Users/UserName/Desktop/LOG)
35+
- NETSS_PRIOR: prior date indicator (ex: either T or F)
36+
- NETSS_DATE: date value (format: 12/30/2023)
3737
- OP_DBPASSWORD: On Prem DB info
3838
- OP_DBSERVER: On Prem DB info
3939
- OP_DBUSER: On Prem DB info

netss-message-processor/execute_script/netss_message_processor.cmd

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
2-
set NND_FILE_LOCATION=/Users/DucNguyen/Desktop/LOG
3-
set NND_PRIOR=true
4-
set NND_DATE=12/30/2023
2+
set NETSS_FILE_LOCATION=/Users/DucNguyen/Desktop/LOG
3+
set NETSS_PRIOR=true
4+
set NETSS_DATE=12/30/2023
55
set OP_DBPASSWORD=fake.fake.fake.1234
66
set OP_DBSERVER=localhost:1433
77
set OP_DBUSER=sa

netss-message-processor/execute_script/netss_message_processor.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
2-
export NND_FILE_LOCATION="/Users/DucNguyen/Desktop/LOG"
3-
export NND_PRIOR="true"
4-
export NND_DATE="12/30/2023"
2+
export NETSS_FILE_LOCATION="/Users/DucNguyen/Desktop/LOG"
3+
export NETSS_PRIOR="true"
4+
export NETSS_DATE="12/30/2023"
55
export OP_DBPASSWORD="fake.fake.fake.1234"
66
export OP_DBSERVER="localhost:1433"
77
export OP_DBUSER="sa"

netss-message-processor/src/main/resources/application.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ server:
22
port: 8083
33

44
functional:
5-
date: ${NND_DATE}
6-
prior: ${NND_PRIOR}
5+
date: ${NETSS_DATE}
6+
prior: ${NETSS_PRIOR}
77

88
io:
9-
fileLocation: ${NND_FILE_LOCATION}
9+
fileLocation: ${NETSS_FILE_LOCATION}
1010

1111
spring:
1212
application:

0 commit comments

Comments
 (0)