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

omero.server.nodedescriptors allows components to be enabled/disabled #272

Merged
merged 3 commits into from Dec 14, 2020

Conversation

manics
Copy link
Member

@manics manics commented Dec 2, 2020

This is a modified copy of https://github.com/ome/omero-grid-docker/blob/fba17b12891a971e3c4bfc90ba59485607e28863/omero-grid/process_defaultxml.py that can be used to define Ice master and worker nodes with custom combinations of enabled services

Adds a new property omero.server.nodedescriptors. E.g. setting it to master:Blitz-0,Tables-0 will disable Indexer-0, DropBox ,MonitorServer, Processor-0

To run the new test:
OMERODIR=/path/to/OMERO.server pytest test/unit/clitest/test_admin.py -k testNodeDescriptors
Note several of the other test_admin.py tests have been broken for a while #61

Copy link
Member

@joshmoore joshmoore left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Few misc. thoughts while reading the code.

src/omero/plugins/admin.py Show resolved Hide resolved
Examples

Everything on a single node (default, the same as passing no config):
master:Blitz-0,Indexer-0,DropBox,MonitorServer,FileServer,Storm,PixelData-0,Processor-0,Tables-0,TestDropBox
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking about the current indexer use case, it's interesting to think about how you might just turn off a single server.

Copy link
Member Author

@manics manics Dec 7, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is quite advanced functionality, so I think we should try and keep it simple for now and require the full list of servers to be specified. In future we could add + - prefixes such as +Processor-1 and -Indexer-0 to indicate the defaults should be modified.



def _process_xml(xml, nodedescs):
pattern = r'\<node name="master"\>\s*\<server-instance[^\>]*\>(.*?\</node\>)'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it simplify things to just delete default.xml?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would, seeing as the only changes to https://github.com/ome/openmicroscopy/commits/develop/etc/templates/grid/default.xml have been to enable configuration from the admin plugin

@joshmoore
Copy link
Member

Comments all acknowledged. Let's save any reworkings for future follow-ups (e.g. extracting admin.py out and moving the template there) You ready to drop "Draft" from this PR?

@sbesson, I assume you're interested in seeing this in IDR ASAP?

@sbesson
Copy link
Member

sbesson commented Dec 7, 2020

@manics for functional testing of this PR, is it possible to create an IDR deployment that disables Indexer but also Dropbox and PixelData?

@manics
Copy link
Member Author

manics commented Dec 7, 2020

I haven't actually tested this yet, which is why it's still marked as draft. For the IDR I'd think something like

omero.server.nodedescriptors=master:Blitz-0,Tables-0

might be enough?

@sbesson
Copy link
Member

sbesson commented Dec 7, 2020

omero.server.nodedescriptors=master:Blitz-0,Tables-0

are certainly the two main services used by IDR that I know of. I don't know whether anything else in the template will be required otherwise starting with this minimal list and adding services as necessary should be fine.

@manics
Copy link
Member Author

manics commented Dec 8, 2020

I've tested this using https://github.com/ome/docker-example-omero with these changes:

$ git diff

diff --git a/docker-compose.yml b/docker-compose.yml
index 60fd75c..23fec7a 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -14,12 +14,13 @@ services:
       - "database:/var/lib/postgresql/data"

   omeroserver:
-    image: "openmicroscopy/omero-server:5.6"
+    build: ./server
     environment:
       CONFIG_omero_db_host: database
       CONFIG_omero_db_user: omero
       CONFIG_omero_db_pass: omero
       CONFIG_omero_db_name: omero
+      CONFIG_omero_server_nodedescriptors: "master:Blitz-0,Tables-0"
       ROOTPASS: omero
     networks:
       - omero
diff --git a/server/Dockerfile b/server/Dockerfile
new file mode 100644
index 0000000..31974ac
--- /dev/null
+++ b/server/Dockerfile
@@ -0,0 +1,5 @@
+FROM openmicroscopy/omero-server:5.6.3
+
+USER root
+RUN /opt/omero/server/venv3/bin/pip install --upgrade --upgrade-strategy only-if-needed https://github.com/manics/omero-py/archive/process_defaultxml.zip
+USER omero-server
$ docker-compose exec omeroserver /opt/omero/server/OMERO.server/bin/omero admin ice server list
Blitz-0
OMERO.Glacier2
Tables-0

$ docker-compose exec omeroserver ps auwwx
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
omero-s+     1  0.0  0.0    212     4 ?        Ss   16:30   0:00 /usr/local/bin/dumb-init /bin/bash /usr/local/bin/entrypoint.sh
omero-s+     6  0.0  0.0  11704  2604 ?        Ss   16:30   0:00 /bin/bash /usr/local/bin/entrypoint.sh
omero-s+   153  0.2  0.9 239944 81328 ?        S    16:31   0:01 /opt/omero/server/venv3/bin/python3 /opt/omero/server/venv3/bin/omero admin start --foreground
omero-s+   783  0.0  0.2 1641848 18408 ?       Sl   16:31   0:00 icegridnode --nochdir --Ice.Config=/opt/omero/server/OMERO.server/etc/internal.cfg,/opt/omero/server/OMERO.server/etc/master.cfg --deploy /opt/omero/server/OMERO.server/etc/grid/default.xml
omero-s+   810 15.3  8.8 5077584 718584 ?      Sl   16:31   1:18 java -Xmx1252m -XX:MaxPermSize=1g -XX:+IgnoreUnrecognizedVMOptions -Djava.awt.headless=true -Dlogback.configurationFile=etc/logback.xml -Domero.logfile=var/log/${omero.name}.log -Domero.name=Blitz-0 ome.services.blitz.Entry --Ice.Config=/opt/omero/server/OMERO.server-5.6.1-ice36-b225/var/master/servers/Blitz-0/config/config
omero-s+   811  0.1  0.1 263396 10760 ?        Sl   16:31   0:00 glacier2router --Ice.Config=/opt/omero/server/OMERO.server-5.6.1-ice36-b225/var/master/servers/OMERO.Glacier2/config/config
omero-s+   832  0.3  1.0 913508 87372 ?        Sl   16:31   0:02 python -m runTables --Ice.Config=/opt/omero/server/OMERO.server-5.6.1-ice36-b225/var/master/servers/Tables-0/config/config
omero-s+  1058  0.0  0.0  51768  3128 pts/0    Rs+  16:40   0:00 ps auwwx

@manics manics marked this pull request as ready for review December 8, 2020 16:40
@manics
Copy link
Member Author

manics commented Dec 9, 2020

See ome/docker-example-omero-grid#11 for another example

@sbesson
Copy link
Member

sbesson commented Dec 10, 2020

Briefly discussed today with @manics who suggested an omero-py pre-release with this PR included might be the simplest way to include it in an IDR deployment. No objection to this progression from my side, which version number should be used?

@sbesson
Copy link
Member

sbesson commented Dec 14, 2020

Discussed this morning. Merging and tagging as prerelease for consumption in IDR deployment.

@sbesson sbesson merged commit 2acae73 into ome:master Dec 14, 2020
manics added a commit to manics/openmicroscopy that referenced this pull request Dec 14, 2020
@manics manics deleted the process_defaultxml branch December 14, 2020 15:30
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 14, 2020
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#555 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/555/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 15, 2020
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 15, 2020
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#672 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/672/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 15, 2020
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#556 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/556/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 16, 2020
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 16, 2020
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#673 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/673/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 17, 2020
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 17, 2020
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#674 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/674/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 17, 2020
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#557 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/557/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 18, 2020
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 18, 2020
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#675 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/675/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Dec 18, 2020
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#558 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/558/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 11, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#582 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/582/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 12, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 12, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#700 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/700/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 12, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#583 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/583/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 13, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 13, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#701 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/701/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 13, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#584 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/584/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 14, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 14, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#702 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/702/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 14, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#585 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/585/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 15, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 15, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#703 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/703/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 15, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#586 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/586/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 16, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 16, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#704 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/704/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 16, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#587 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/587/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 17, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 17, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#705 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/705/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 17, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#588 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/588/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 18, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 18, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#706 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/706/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 18, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 18, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#707 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/707/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 18, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#589 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/589/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 19, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 19, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#708 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/708/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 19, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6262 manics 'Documentation for ome/omero-py#272' (user: manics)
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables' (user: kkoz)
  - PR 6256 jburel 'point to guides' (user: jburel)
  - PR 6247 will-moore 'Add chown web test' (user: will-moore)
  - PR 6212 jburel 'add test to import images' (user: jburel)
  - PR 6176 sbesson 'Restore CLI DB integration tests' (user: sbesson)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (user: dominikl)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (user: manics)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (user: joshmoore)
Already up-to-date.

Generated by OMERO-push#590 (https://latest-ci.openmicroscopy.org/jenkins/job/OMERO-push/590/)
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 20, 2021
snoopycrimecop added a commit to snoopycrimecop/openmicroscopy that referenced this pull request Jan 20, 2021
Repository: openmicroscopy/openmicroscopy
Excluded PRs:
  - PR 6247 will-moore 'Add chown web test' (exclude comment)
  - PR 6212 jburel 'add test to import images' (state: failure)
  - PR 6101 dominikl 'Set namespace of fileannoation of omero.table - test' (state: failure)
  - PR 6086 manics 'Alternative JSON configuration system for OMERO.web' (label: exclude)
  - PR 5966 joshmoore 'Allow testing multiple builds in travis' (state: failure)
Already up-to-date.

Merged PRs:
  - PR 6176 sbesson 'Restore CLI DB integration tests'
  - PR 6256 jburel 'point to guides'
  - PR 6260 kkoz 'Add slice examples for reading data from Omero Tables'
  - PR 6262 manics 'Documentation for ome/omero-py#272'

Generated by OMERO-push#709 (https://merge-ci.openmicroscopy.org/jenkins/job/OMERO-push/709/)
joshmoore added a commit to ome/openmicroscopy that referenced this pull request Jan 20, 2021
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

Successfully merging this pull request may close these issues.

None yet

3 participants