scylladb / python-driver-matrix

3 stars 11 forks source link

datastax patch: start using `experimental_features` #64

Closed fruch closed 9 months ago

fruch commented 10 months ago

patch was using experimental which isn't support anymore, and node boot was failing like:

2023-09-20 05:28:40,323 DEBUG [__init__:430]: Removing cluster test_cluster
tests/integration/standard/test_policies.py::HostFilterPolicyTests::test_predicate_changes
ERROR 2023-09-20 05:28:40,230 [shard 0:main] init - Startup failed: std::runtime_error
(You must use both enable_user_defined_functions and experimental_features:udf to enable user-defined functions)

using experimental_features: ['udf'] fixes is, and test could run

Fixes: #63