Skip to content

Commit

Permalink
move pycore back to end
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Jul 9, 2024
1 parent ced3fd0 commit bf48f38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions awscrt/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ def on_shutdown():
throughput_target_gbps,
enable_s3express,
memory_limit,
s3_client_core,
network_interface_names)
network_interface_names,
s3_client_core)

def make_request(
self,
Expand Down
6 changes: 3 additions & 3 deletions source/s3_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ PyObject *aws_py_s3_client_new(PyObject *self, PyObject *args) {
double throughput_target_gbps; /* d */
int enable_s3express; /* p */
uint64_t mem_limit; /* K */
PyObject *py_core; /* O */
PyObject *network_interface_names_py; /* O */
PyObject *py_core; /* O */

if (!PyArg_ParseTuple(
args,
Expand All @@ -276,8 +276,8 @@ PyObject *aws_py_s3_client_new(PyObject *self, PyObject *args) {
&throughput_target_gbps,
&enable_s3express,
&mem_limit,
&py_core,
&network_interface_names_py)) {
&network_interface_names_py,
&py_core)) {
return NULL;
}

Expand Down

0 comments on commit bf48f38

Please sign in to comment.