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 ee35ca4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,12 @@ jobs:
sudo apt update
sudo apt install valgrind
working-directory: ${{ github.workspace }}


# 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: Start HSDS
if: ${{ matrix.endpoint != 'http://127.0.0.1:5101'}}
run: |
Expand All @@ -133,7 +138,7 @@ jobs:
ROOT_DIR=${{github.workspace}}/hsdadata ./runall.sh --no-docker 1 &
sleep 10
working-directory: ${{github.workspace}}/hsds

- name: Test HSDS
if: ${{matrix.endpoint != 'http://127.0.0.1:5101'}}
run: |
Expand Down Expand Up @@ -240,7 +245,12 @@ jobs:
sudo apt update
sudo apt install valgrind
working-directory: ${{ github.workspace }}


# 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: Start HSDS
if: ${{ matrix.endpoint != 'http://127.0.0.1:5101'}}
run: |
Expand All @@ -254,7 +264,7 @@ jobs:
ROOT_DIR=${{github.workspace}}/hsdadata ./runall.sh --no-docker 1 &
sleep 10
working-directory: ${{github.workspace}}/hsds

- 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 ee35ca4

Please sign in to comment.