Skip to content

Commit

Permalink
- Specific test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
spillai committed Feb 27, 2020
1 parent 45a9b92 commit f86e9e3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
io.snappydata.hydra.security.SnappySecurityPrms-isSecurity = ONEOF true true false FOENO;
io.snappydata.hydra.security.SnappySecurityPrms-passFile = /export/dev9a/users/spillai/snappydata/dtests/src/test/java/io/snappydata/hydra/cluster/commonPassFile.txt;
io.snappydata.hydra.security.SnappySecurityPrms-isSecurity = ONEOF true true FOENO;
io.snappydata.hydra.security.SnappySecurityPrms-passFile = /export/shared/QA_DATA/commonPassFile.txt;
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ public void startLdapServer() {
}
try {
String dest = getCurrentDirPath() + File.separator + "ldapServerStart.log";
String propFile = getCurrentDirPath() + File.separator + "../../../secureBootProp.log";
// String propFile = "/export/shared/QA_DATA/secureBootProp.log";
// String propFile = getCurrentDirPath() + File.separator + "../../../secureBootProp.log";
String propFile = "/export/shared/QA_DATA/secureBootProp.log";
File ldapServerFile = new File(dest);
File secureBootPropFile = new File(propFile);
if(secureBootPropFile.exists())
Expand Down Expand Up @@ -108,8 +108,8 @@ public void startLdapServer() {
public static String getSecureBootProp() {
try {
File log = new File(".");
String propFile = log.getCanonicalPath() + File.separator + "../../../secureBootProp.log";
// String propFile = "/export/shared/QA_DATA/secureBootProp.log";
// String propFile = log.getCanonicalPath() + File.separator + "../../../secureBootProp.log";
String propFile = "/export/shared/QA_DATA/secureBootProp.log";
File secureBootPropFile = new File(propFile);
FileInputStream fis = new FileInputStream(secureBootPropFile);
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ class ConvertCsvToParquetAndLoadTablesJob extends SnappySQLJob {

SnappyDMLTestUtil.createParquetData(snc, parquetFileLocation, pw)
snc.setConf("parquetFileLocation", parquetFileLocation)
snc.sql("set schema gemfire1")
pw.println("Now loading data to the snappy tables...")
pw.println("Loading data into orders..."); pw.flush()
SnappyDMLTestUtil.orders_par(snc).write.insertInto("orders")
Expand Down

0 comments on commit f86e9e3

Please sign in to comment.