Skip to content

Commit

Permalink
argus: fix to use default PostgresqJobPersistence ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
pdowler committed Aug 26, 2024
1 parent 9827087 commit 86a5ac3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion argus/VERSION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## deployable containers have a semantic and build tag
# semantic version tag: major.minor
# build version tag: timestamp
VER=1.0.10
VER=1.0.11
TAGS="${VER} ${VER}-$(date -u +"%Y%m%dT%H%M%S")"
unset VER
2 changes: 1 addition & 1 deletion argus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
compile 'org.opencadc:cadc-registry:[1.5.0,)'
compile 'org.opencadc:cadc-gms:[1.0.0,)'
compile 'org.opencadc:cadc-dali:[1.2.12,)'
compile 'org.opencadc:cadc-uws-server:[1.2.8,)'
compile 'org.opencadc:cadc-uws-server:[1.2.22,)'
compile 'org.opencadc:cadc-tap-schema:[1.1.22,)'
compile 'org.opencadc:cadc-tap-server:[1.1.15,)'
compile 'org.opencadc:cadc-tap-server-pg:[1.0.0,)'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class QueryJobManager extends SimpleJobManager {
public QueryJobManager() {
super();
// persist UWS jobs to PostgreSQL.
JobPersistence jobPersist = new PostgresJobPersistence(AuthenticationUtil.getIdentityManager());
JobPersistence jobPersist = new PostgresJobPersistence();

// max threads: 6 == number of simultaneously running async queries (per instance)
// plus sync queries, plus VOSI-tables queries
Expand Down

0 comments on commit 86a5ac3

Please sign in to comment.