Skip to content

Commit

Permalink
initial change
Browse files Browse the repository at this point in the history
  • Loading branch information
luiskuhn committed Jul 12, 2023
1 parent be65d89 commit d7c5146
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@
<dependency>
<groupId>life.qbic</groupId>
<artifactId>omero-client-lib</artifactId>
<version>1.2.0</version>
<version>1.3.1</version>

<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand All @@ -208,6 +209,7 @@
<artifactId>jcl-over-slf4j</artifactId>
</exclusion>
</exclusions>

</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private void initView(final DBManager dbm, final Vocabularies vocabularies, fina
try {
int omeroPort = Integer.parseInt(config.getOmeroPort());
omero = new BasicOMEROClient(config.getOmeroUser(), config.getOmeroPassword(),
config.getOmeroHostname(), omeroPort);
config.getOmeroHostname(), omeroPort, "default");
} catch (NumberFormatException | NullPointerException e) {
logger.warn("Omero port could not be parsed form the configuration file.");
}
Expand Down

0 comments on commit d7c5146

Please sign in to comment.