Skip to content

Commit fdb93fc

Browse files
committed
what???
1 parent 602764f commit fdb93fc

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

source/common.c

+4-5
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,14 @@ PyObject *aws_py_thread_join_all_managed(PyObject *self, PyObject *args) {
4646
}
4747
}
4848
aws_thread_set_managed_join_timeout_ns(timeout_ns);
49-
50-
/* clang-format off */
51-
Py_BEGIN_ALLOW_THREADS
49+
// /* clang-format off */
50+
// Py_BEGIN_ALLOW_THREADS
5251
/* Drop GIL to allow other threads callback into python to finish joining. */
5352
if (aws_thread_join_all_managed()) {
5453
Py_RETURN_FALSE;
5554
}
56-
Py_END_ALLOW_THREADS
57-
/* clang-format on */
55+
// Py_END_ALLOW_THREADS
5856

5957
Py_RETURN_TRUE;
58+
/* clang-format on */
6059
}

0 commit comments

Comments
 (0)