Skip to content

Commit

Permalink
Merge pull request #156 from pdowler/main
Browse files Browse the repository at this point in the history
argus: fix to use default PostgresqJobPersistence ctor
  • Loading branch information
pdowler authored Aug 26, 2024
2 parents 32d4392 + 8bbbb80 commit 026ec76
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 026ec76

Please sign in to comment.