Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public static AttributeSet attributeDefinitionSet() {
private Attribute<Integer> ageoffTTLhours;
private Attribute<Integer> ageoffPriority;

public AccumuloCacheStoreConfiguration(AttributeSet attributes, AsyncStoreConfiguration async, SingletonStoreConfiguration singletonStore) {
super(attributes, async, singletonStore);
public AccumuloCacheStoreConfiguration(AttributeSet attributes, AsyncStoreConfiguration async) {
super(attributes, async, null); // Null for now, not sure what to pass here.
instanceName = attributes.attribute(INSTANCE_NAME);
zookeepers = attributes.attribute(ZOOKEEPERS);
username = attributes.attribute(USERNAME);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public AccumuloCacheStoreConfigurationBuilder ageoffPriority(int ageoffPriority)

@Override
public AccumuloCacheStoreConfiguration create() {
return new AccumuloCacheStoreConfiguration(attributes.protect(), async.create(), singletonStore.create());
return new AccumuloCacheStoreConfiguration(attributes.protect(), async.create());
}

@Override
Expand Down
Loading