Skip to content

Commit

Permalink
fix(scyllaclient): don't query raft read barrier API on Scylla 2024.2
Browse files Browse the repository at this point in the history
It turns out that Scylla 2024.2 does not expose this API.
For now, it's not know which enterprise release will contain it.
Fixes #4183
  • Loading branch information
Michal-Leszczynski committed Dec 20, 2024
1 parent a16e511 commit e2bc720
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/scyllaclient/client_agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ func (ni *NodeInfo) SupportsSafeDescribeSchemaWithInternals() (SafeDescribeMetho

for _, fv := range []featureByVersion{
{Constraint: ">= 6.1, < 2000", Method: SafeDescribeMethodReadBarrierAPI},
{Constraint: ">= 2024.2, > 1000", Method: SafeDescribeMethodReadBarrierAPI},
{Constraint: ">= 6.0, < 2000", Method: SafeDescribeMethodReadBarrierCQL},
} {
supports, err := scyllaversion.CheckConstraint(ni.ScyllaVersion, fv.Constraint)
Expand Down

0 comments on commit e2bc720

Please sign in to comment.