changed FTP server IP for QA environment

This commit is contained in:
Infineon\StieberD
2025-11-11 09:13:53 -07:00
parent c1dea45db2
commit 39bdf5f9cb
2 changed files with 56 additions and 24 deletions

View File

@ -601,6 +601,7 @@ Service GetScrapeServerPort()
end service
Service GetTextDataBackupRootDir()
Machine = Environment_Services('GetServer')
@ -621,8 +622,42 @@ Service GetTextDataBackupRootDir()
end service
Service GetSapFtpServerIP()
If Environment_Services('IsProd') then
Response = '172.23.28.185'
end else
Response = '172.28.127.107'
end
end service
Service GetSapFtpServerUser()
If Environment_Services('IsProd') then
Response = 'prdopeni'
end else
Response = 'qasopeni'
end
end service
Service GetSapFtpServerPassword()
If Environment_Services('IsProd') then
Response = 'sapprdopeni'
end else
Response = 'sapqasopeni'
end
end service
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Internal GoSubs
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////