diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dc60dacf..c5981972 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -255,6 +255,10 @@ jobs: sleep 10 working-directory: ${{github.workspace}}/hsds + # Requests 2.32.0 breaks requests-unixsocket, used by HSDS for socket connections + - name: Fix requests version + run: | + pip install requests==2.31.0 - name: Test HSDS if: ${{matrix.endpoint != 'http://127.0.0.1:5101'}} run: | diff --git a/src/rest_vol_dataset.c b/src/rest_vol_dataset.c index 97ec85fb..b5fc7cbc 100644 --- a/src/rest_vol_dataset.c +++ b/src/rest_vol_dataset.c @@ -3973,7 +3973,7 @@ RV_setup_dataset_create_request_body(void *parent_obj, const char *name, hid_t t /*------------------------------------------------------------------------- * Function: RV_convert_point_selection_to_binary * - * Purpose: Given an HDF5 dataspace containin a point selection, + * Purpose: Given an HDF5 dataspace containing a point selection, * formats the selection within the * dataspace into either a binary representation. * This is currently used only for point reads.