Skip to content

Commit

Permalink
Merge pull request #72 from EBISPOT/dev
Browse files Browse the repository at this point in the history
issue-65: disable embedded Tomcat and remove unnecessary exit
  • Loading branch information
serjoshua authored Apr 21, 2023
2 parents 07b5321 + 195499c commit 9e7e64f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions oxo-indexer/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ oxo.neo.uri=http://neo4j:dba@localhost:7474
#bolt://neo4j:dba@localhost:7688

spring.data.solr.host=http://localhost:8983/solr
spring.main.web-environment=false

oxo.indexer.chunks=100000

Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ public void run(String... strings) throws Exception {
}

public static void main(String[] args) throws Exception {
SpringApplication.exit(SpringApplication.run(SolrIndexer.class, args));
SpringApplication.run(SolrIndexer.class, args);
}
}

0 comments on commit 9e7e64f

Please sign in to comment.