Skip to content

Commit

Permalink
HPCC-31390 Allow soaptext1.ecl to be deployed as a query to aks
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
  • Loading branch information
ghalliday committed Mar 5, 2024
1 parent 4fb9733 commit dc30210
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions testing/regress/ecl/soaptext1.ecl
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,18 @@
import ^ as root;

//Simplified configuration
roxieIP := '.' : STORED('TargetIP');
espIP := '.' : STORED('TargetIP');
string roxieIP := '.' : STORED('remoteRoxieService');
string espIP := '.' : STORED('remoteEspService');
boolean defaultEncryptConnection := false : stored('encryptConnection');
boolean defaultPersistConnection := false : stored('persistConnection');
boolean defaultCallDirect := false : stored('callDirect');
boolean defaultCallViaEsp := false : stored('callViaEsp');

//Simplified call options - doesn't provide all combinations that should be tested eventually
boolean encryptConnection := #IFDEFINED(root.encryptConnection, false);
boolean persistConnection := #IFDEFINED(root.persistConnection, false);
boolean callDirect := #IFDEFINED(root.callDirect, false);
boolean callViaEsp := #IFDEFINED(root.callViaEsp, false);
boolean encryptConnection := #IFDEFINED(root.encryptConnection, defaultEncryptConnection);
boolean persistConnection := #IFDEFINED(root.persistConnection, defaultPersistConnection);
boolean callDirect := #IFDEFINED(root.callDirect, defaultCallDirect);
boolean callViaEsp := #IFDEFINED(root.callViaEsp, defaultCallViaEsp);

//--- end of version configuration ---

Expand Down

0 comments on commit dc30210

Please sign in to comment.