File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,9 @@ This architecture ensure the STLT can make a secure connection to CDC database w
31
31
- NBS_NND_CRON_TIME_ZONE: Cron timezone (ex: UTC)
32
32
- NETSS Message Processor ENV:
33
33
- 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)
37
37
- OP_DBPASSWORD: On Prem DB info
38
38
- OP_DBSERVER: On Prem DB info
39
39
- OP_DBUSER: On Prem DB info
Original file line number Diff line number Diff line change 1
1
@ 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
5
5
set OP_DBPASSWORD = fake.fake.fake.1234
6
6
set OP_DBSERVER = localhost:1433
7
7
set OP_DBUSER = sa
Original file line number Diff line number Diff line change 1
1
#! /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"
5
5
export OP_DBPASSWORD=" fake.fake.fake.1234"
6
6
export OP_DBSERVER=" localhost:1433"
7
7
export OP_DBUSER=" sa"
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ server:
2
2
port : 8083
3
3
4
4
functional :
5
- date : ${NND_DATE }
6
- prior : ${NND_PRIOR }
5
+ date : ${NETSS_DATE }
6
+ prior : ${NETSS_PRIOR }
7
7
8
8
io :
9
- fileLocation : ${NND_FILE_LOCATION }
9
+ fileLocation : ${NETSS_FILE_LOCATION }
10
10
11
11
spring :
12
12
application :
You can’t perform that action at this time.
0 commit comments