Skip to content

Commit

Permalink
bugfix in setting consistency level
Browse files Browse the repository at this point in the history
  • Loading branch information
denisivan0v committed Aug 29, 2018
1 parent dc1739e commit 0d43251
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ internal sealed class CassandraGrainStorage : IGrainStorage, ILifecycleParticipa
CqlQueryOptions.New().SetSerialConsistencyLevel(SerialConsistencyLevel);

private static readonly CqlQueryOptions DefaultConsistencyQueryOptions =
CqlQueryOptions.New().SetSerialConsistencyLevel(DefaultConsistencyLevel);
CqlQueryOptions.New().SetConsistencyLevel(DefaultConsistencyLevel);

private readonly string _name;
private readonly string _serviceId;
Expand Down

0 comments on commit 0d43251

Please sign in to comment.