Skip to content

Commit

Permalink
fix constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
clairemcginty committed Jan 22, 2024
1 parent 27f5afe commit db631c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public abstract class BucketMetadata<K1, K2, V> implements Serializable, HasDisp
@JsonIgnore private final Coder<K2> keyCoderSecondary;

public BucketMetadata(
int version, int numBuckets, int numShards, Class<K1> keyClass, String hashType)
int version, int numBuckets, int numShards, Class<K1> keyClass, HashType hashType)
throws CannotProvideCoderException, NonDeterministicException {
this(version, numBuckets, numShards, keyClass, null, hashType, null);
}
Expand Down

0 comments on commit db631c9

Please sign in to comment.