Skip to content

Commit

Permalink
close #2597
Browse files Browse the repository at this point in the history
  • Loading branch information
haohao0103 committed Jul 19, 2024
1 parent 03b40a5 commit 6df914e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions 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

0 comments on commit 6df914e

Please sign in to comment.