Skip to content

Commit

Permalink
Merge branch 'master' into fix-2601
Browse files Browse the repository at this point in the history
  • Loading branch information
imbajin authored Aug 2, 2024
2 parents 8170379 + 53f0e18 commit d6b3b0f
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@

public class LogMeta extends MetadataRocksDBStore {

private final PDConfig pdConfig;

public LogMeta(PDConfig pdConfig) {
super(pdConfig);
this.pdConfig = pdConfig;
}

public void insertLog(Metapb.LogRecord record) throws PDException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,10 @@ public class PartitionMeta extends MetadataRocksDBStore {

static String CID_GRAPH_ID_KEY = "GraphID";
static int CID_GRAPH_ID_MAX = 0xFFFE;
private final PDConfig pdConfig;
private final PartitionCache cache;

public PartitionMeta(PDConfig pdConfig) {
super(pdConfig);
this.pdConfig = pdConfig;
//this.timeout = pdConfig.getEtcd().getTimeout();
this.cache = new PartitionCache();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,9 @@
@Slf4j
public class StoreInfoMeta extends MetadataRocksDBStore {

private final PDConfig pdConfig;

public StoreInfoMeta(PDConfig pdConfig) {
super(pdConfig);
this.pdConfig = pdConfig;
// this.timeout = pdConfig.getDiscovery().getHeartbeatOutTimes();
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# bind url
# could use '0.0.0.0' or specified (real)IP to expose external network access
restserver.url=http://127.0.0.1:8080
# gremlin server url, need to be consistent with host and port in gremlin-server.yaml
#gremlinserver.url=http://127.0.0.1:8182
Expand Down

0 comments on commit d6b3b0f

Please sign in to comment.