File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -56,11 +56,13 @@ void init_array(py::module &m) {
56
56
.def (" close" , &Array::close)
57
57
.def (" consolidate" ,
58
58
py::overload_cast<const Context &, const std::string &,
59
- Config *const >(&Array::consolidate))
59
+ Config *const >(&Array::consolidate),
60
+ py::call_guard<py::gil_scoped_release>())
60
61
.def (" consolidate" ,
61
62
py::overload_cast<const Context &, const std::string &,
62
63
tiledb_encryption_type_t , const std::string &,
63
- Config *const >(&Array::consolidate))
64
+ Config *const >(&Array::consolidate),
65
+ py::call_guard<py::gil_scoped_release>())
64
66
// (void (Array::*)(const Context&, const std::string&,
65
67
// tiledb_encryption_type_t, const std::string&,
66
68
// Config* const)&Array::consolidate)&Array::consolidate)
You can’t perform that action at this time.
0 commit comments