Skip to content

Commit 9276a1f

Browse files
SK-2274 test internal release
1 parent 8349e63 commit 9276a1f

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

common/src/main/java/com/skyflow/BaseSkyflow.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,18 @@
1010
import java.util.LinkedHashMap;
1111

1212
class BaseSkyflow {
13+
// base skyflow class
1314
private final BaseSkyflowClientBuilder builder;
14-
1515
protected BaseSkyflow(BaseSkyflowClientBuilder builder) {
1616
this.builder = builder;
1717
}
18-
1918
public LogLevel getLogLevel() {
2019
return this.builder.logLevel;
2120
}
22-
2321
public VaultConfig getVaultConfig() {
2422
Object[] array = this.builder.vaultConfigMap.values().toArray();
2523
return (VaultConfig) array[0];
2624
}
27-
2825
static class BaseSkyflowClientBuilder {
2926
protected final LinkedHashMap<String, VaultConfig> vaultConfigMap;
3027
protected Credentials skyflowCredentials;

v3/src/main/java/com/skyflow/utils/Constants.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ public final class Constants extends BaseConstants {
99
public static final Integer MAX_INSERT_BATCH_SIZE = 1000;
1010
public static final Integer INSERT_CONCURRENCY_LIMIT = 10;
1111
public static final Integer MAX_INSERT_CONCURRENCY_LIMIT = 10;
12-
1312
public static final Integer DETOKENIZE_BATCH_SIZE = 50;
1413
public static final Integer DETOKENIZE_CONCURRENCY_LIMIT = 10;
1514
public static final Integer MAX_DETOKENIZE_BATCH_SIZE = 1000;

0 commit comments

Comments
 (0)