Skip to content

Commit

Permalink
Merge pull request #42 from manics/omero-server-5.6.11
Browse files Browse the repository at this point in the history
OMERO.server 5.6.11
  • Loading branch information
manics authored May 21, 2024
2 parents f6329f3 + 28b5846 commit 375c4f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ci/test_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ def test_image():
"server": 1,
"noredirect": 1,
},
verify=False,
)
r.raise_for_status()
assert r.text == "OK"

r = session.get(f"{SERVER}/api/v0/m/images/{IMAGE_ID}")
r = session.get(f"{SERVER}/api/v0/m/images/{IMAGE_ID}", verify=False)
r.raise_for_status()
im = r.json()

Expand Down
4 changes: 2 additions & 2 deletions omero-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
appVersion: 5.6.10
appVersion: 5.6.11
description: OMERO.server
name: omero-server
version: 0.4.4
version: 0.4.5
icon: https://www.openmicroscopy.org/img/logos/omero-logomark.svg

0 comments on commit 375c4f3

Please sign in to comment.