Skip to content

Commit

Permalink
Fix requests version in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed May 22, 2024
1 parent 8f39213 commit f02e77b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion src/rest_vol_dataset.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f02e77b

Please sign in to comment.