Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

suConn fails with _BlitzGateway object has no attribute '_ctx' #289

Open
glyg opened this issue May 28, 2021 · 3 comments
Open

suConn fails with _BlitzGateway object has no attribute '_ctx' #289

glyg opened this issue May 28, 2021 · 3 comments

Comments

@glyg
Copy link
Contributor

glyg commented May 28, 2021

Hi ome team,

I have an error when trying to use suConn

...
File "/opt/omero/server/impomero-main/impomero/annotation_job.py", line 60, in auto_annotate
user_conn = conn.suConn(user)
File "/opt/omero/server/venv3/lib64/python3.6/site-packages/omero/gateway/__init__.py", line 1853, in suConn
if self.isAdmin():
File "/opt/omero/server/venv3/lib64/python3.6/site-packages/omero/gateway/__init__.py", line 2435, in isAdmin
return self.getEventContext().isAdmin
File "/opt/omero/server/venv3/lib64/python3.6/site-packages/omero/gateway/__init__.py", line 2322, in getEventContext
if self._ctx is None:
AttributeError: '_BlitzGateway' object has no attribute '_ctx'

This occurs if the BlitzGateway was not connected before suConn is called, as the _ctx attribute is not created. Maybe a more explicit connection error could be raised in this case?

@glyg
Copy link
Contributor Author

glyg commented May 28, 2021

of course I'm happy to open a PR for that if needed.

@will-moore
Copy link
Member

Thanks for reporting.
It would certainly be nicer to have an explicit connection error here.
But I realise that the same is true of almost all the methods on the BlitzGateway - You'll get some error if you try to call them before you're connected, but it's not handled uniformly anywhere.

I guess we could create an @assert_connected decorator for all the methods we want to handle this, but that's probably a bigger job than you're looking for!?

@glyg
Copy link
Contributor Author

glyg commented May 28, 2021

I guess we could create an @assert_connected decorator for all the methods we want to handle this, but that's probably a bigger job than you're looking for!?

😄 I can surely write the decorator, and apply it to getEventContext, but I would let you judge where else to apply it!

snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue May 28, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types' (user: sbesson)
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (user: sbesson)
  - PR 285 will-moore 'get objects by map annotations' (user: will-moore)
  - PR 280 will-moore 'config add web middleware' (user: will-moore)
  - PR 276 will-moore 'createImageFromNumpySeq handles big images' (user: will-moore)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 189 manics 'BlitzGateway defaults to secure=True' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#596 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/596/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue May 29, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 290 glyg 'Assert connection decorator, see ome#289' (state: failure)
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 189 manics 'BlitzGateway defaults to secure=True'
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 276 will-moore 'createImageFromNumpySeq handles big images'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'

Generated by OMERO-python-superbuild-push#709 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/709/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue May 29, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types' (user: sbesson)
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (user: sbesson)
  - PR 285 will-moore 'get objects by map annotations' (user: will-moore)
  - PR 280 will-moore 'config add web middleware' (user: will-moore)
  - PR 276 will-moore 'createImageFromNumpySeq handles big images' (user: will-moore)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 189 manics 'BlitzGateway defaults to secure=True' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#597 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/597/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue May 30, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 290 glyg 'Assert connection decorator, see ome#289' (state: failure)
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 189 manics 'BlitzGateway defaults to secure=True'
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 276 will-moore 'createImageFromNumpySeq handles big images'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'

Generated by OMERO-python-superbuild-push#710 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/710/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue May 30, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types' (user: sbesson)
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (user: sbesson)
  - PR 285 will-moore 'get objects by map annotations' (user: will-moore)
  - PR 280 will-moore 'config add web middleware' (user: will-moore)
  - PR 276 will-moore 'createImageFromNumpySeq handles big images' (user: will-moore)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 189 manics 'BlitzGateway defaults to secure=True' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#598 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/598/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue May 31, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 290 glyg 'Assert connection decorator, see ome#289' (state: failure)
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 189 manics 'BlitzGateway defaults to secure=True'
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 276 will-moore 'createImageFromNumpySeq handles big images'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'

Generated by OMERO-python-superbuild-push#711 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/711/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue May 31, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types' (user: sbesson)
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (user: sbesson)
  - PR 285 will-moore 'get objects by map annotations' (user: will-moore)
  - PR 280 will-moore 'config add web middleware' (user: will-moore)
  - PR 276 will-moore 'createImageFromNumpySeq handles big images' (user: will-moore)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 189 manics 'BlitzGateway defaults to secure=True' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#599 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/599/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 1, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 189 manics 'BlitzGateway defaults to secure=True'
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 276 will-moore 'createImageFromNumpySeq handles big images'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'

Conflicting PRs (not included):
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#712 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/712/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 1, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types' (user: sbesson)
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (user: sbesson)
  - PR 285 will-moore 'get objects by map annotations' (user: will-moore)
  - PR 280 will-moore 'config add web middleware' (user: will-moore)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#600 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/600/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 2, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 2, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#713 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/713/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 3, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 3, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#714 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/714/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 4, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 4, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#715 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/715/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 5, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 5, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#716 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/716/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 6, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 6, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#717 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/717/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 7, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 7, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#718 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/718/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 8, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 8, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#719 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/719/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 9, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 9, 2021
Repository: ome/omero-py
Excluded PRs:
  - PR 287 sbesson 'Add logic to search OMERO.tables on non Pythonic named columns' (exclude comment)
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 280 will-moore 'config add web middleware'
  - PR 285 will-moore 'get objects by map annotations'
  - PR 288 sbesson 'Fix HdfStorage.read() implementation to work with all column types'
  - PR 290 glyg 'Assert connection decorator, see ome#289'

Generated by OMERO-python-superbuild-push#720 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/720/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Jun 10, 2021
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 22, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 299 joshmoore 'Add parents and children to omero obj' (user: joshmoore)
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#867 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/867/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 23, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 23, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#44 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/44/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 23, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 23, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#1016 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1016/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 23, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 299 joshmoore 'Add parents and children to omero obj' (user: joshmoore)
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#868 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/868/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 24, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 24, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#45 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/45/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 24, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 24, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#1017 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1017/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 24, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 299 joshmoore 'Add parents and children to omero obj' (user: joshmoore)
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#869 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/869/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 25, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 25, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#46 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/46/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 25, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 25, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#1018 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1018/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 25, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 299 joshmoore 'Add parents and children to omero obj' (user: joshmoore)
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#870 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/870/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 26, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 26, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#47 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/47/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 26, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 26, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#1019 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1019/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 26, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 299 joshmoore 'Add parents and children to omero obj' (user: joshmoore)
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#871 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/871/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 27, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 27, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#48 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/48/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 27, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 27, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#1020 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1020/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 27, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 299 joshmoore 'Add parents and children to omero obj' (user: joshmoore)
  - PR 290 glyg 'Assert connection decorator, see ome#289' (user: glyg)
  - PR 266 joshmoore 'errors: use raise_error from cli plugins' (user: joshmoore)
  - PR 207 manics 'BlitzGateway.connect raise on error' (user: manics)
  - PR 199 joshmoore 'user: allow setting default group' (user: joshmoore)
  - PR 194 manics 'Support Python 3 asyncio concurrency' (user: manics)
  - PR 184 manics 'Auto-format code with black' (user: manics)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (user: manics)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (user: dominikl)
  - PR 115 manics 'Remove omero_ext.argparse' (user: manics)
Already up-to-date.

Generated by OMERO-python-superbuild-push#872 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/872/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 28, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 28, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#49 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/49/)
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 28, 2022
snoopycrimecop added a commit to snoopycrimecop/omero-py that referenced this issue Mar 28, 2022
Repository: ome/omero-py
Excluded PRs:
  - PR 184 manics 'Auto-format code with black' (exclude comment)
  - PR 160 manics 'prefs.py: config throw if OMERODIR not set' (exclude comment)
  - PR 129 dominikl 'Add option to create new ThumbnailStore connection' (exclude comment)
  - PR 115 manics 'Remove omero_ext.argparse' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 194 manics 'Support Python 3 asyncio concurrency'
  - PR 199 joshmoore 'user: allow setting default group'
  - PR 207 manics 'BlitzGateway.connect raise on error'
  - PR 266 joshmoore 'errors: use raise_error from cli plugins'
  - PR 290 glyg 'Assert connection decorator, see ome#289'
  - PR 299 joshmoore 'Add parents and children to omero obj'

Generated by OMERO-python-superbuild-push#1021 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-python-superbuild-push/1021/)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants