Skip to content

Commit

Permalink
deps: bump riverboat + config:Generate (#108)
Browse files Browse the repository at this point in the history
Signed-off-by: Sarah Funkhouser <[email protected]>
  • Loading branch information
golanglemonade authored Oct 5, 2024
1 parent 4e2a5a2 commit e1b785b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ CORE_DB_CACHETTL="1s"
CORE_DB_RUNMIGRATIONS="true"
CORE_DB_MIGRATIONPROVIDER="atlas"
CORE_DB_ENABLEHISTORY="false"
CORE_JOBQUEUE_CONNECTIONURI=""
CORE_JOBQUEUE_CONNECTIONURI="postgres://postgres:[email protected]:5432/jobs?sslmode=disable"
CORE_JOBQUEUE_RUNMIGRATIONS="false"
CORE_REDIS_ENABLED="true"
CORE_REDIS_ADDRESS="localhost:6379"
Expand Down
2 changes: 1 addition & 1 deletion config/config.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ entConfig:
useListObjectServices: false
useListUserService: true
jobQueue:
connectionURI: ""
connectionURI: postgres://postgres:[email protected]:5432/jobs?sslmode=disable
riverConf:
AdvisoryLockPrefix: 0
CancelledJobRetentionPeriod: 0
Expand Down
2 changes: 1 addition & 1 deletion config/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ data:
CORE_DB_RUNMIGRATIONS: {{ .Values.core.db.runMigrations | default true }}
CORE_DB_MIGRATIONPROVIDER: {{ .Values.core.db.migrationProvider | default "atlas" }}
CORE_DB_ENABLEHISTORY: {{ .Values.core.db.enableHistory | default false }}
CORE_JOBQUEUE_CONNECTIONURI: {{ .Values.core.jobQueue.connectionURI }}
CORE_JOBQUEUE_CONNECTIONURI: {{ .Values.core.jobQueue.connectionURI | default "postgres://postgres:[email protected]:5432/jobs?sslmode=disable" }}
CORE_JOBQUEUE_RUNMIGRATIONS: {{ .Values.core.jobQueue.runMigrations | default false }}
CORE_REDIS_ENABLED: {{ .Values.core.redis.enabled | default true }}
CORE_REDIS_ADDRESS: {{ .Values.core.redis.address | default "localhost:6379" }}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ require (
github.com/theopenlane/httpsling v0.2.1
github.com/theopenlane/iam v0.2.1
github.com/theopenlane/newman v0.1.1
github.com/theopenlane/riverboat v0.0.6
github.com/theopenlane/riverboat v0.0.7
github.com/theopenlane/utils v0.3.0
github.com/vektah/gqlparser/v2 v2.5.17
github.com/wundergraph/graphql-go-tools v1.67.4
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -524,8 +524,8 @@ github.com/theopenlane/iam v0.2.1 h1:rUUnrEIgr1up6DnF52Ayk6TVaGhBtSNiEw5rGSQPR/w
github.com/theopenlane/iam v0.2.1/go.mod h1:65VB58GMFay80qRTP+4USlSkTiZcisxvt7ohMHmuHnc=
github.com/theopenlane/newman v0.1.1 h1:pxGPRcy8kXQplfv4Sp1N3XUkWmx/scZvp7oj+y2l8wI=
github.com/theopenlane/newman v0.1.1/go.mod h1:A37pInKEYsdvUmjQzTDv7x5T4KhMxoFW105DA3XvH4Y=
github.com/theopenlane/riverboat v0.0.6 h1:7N4AetqHkbKw1l/zYtRJnUi/XpsYNHBHWLf2PJgnhN0=
github.com/theopenlane/riverboat v0.0.6/go.mod h1:yvXaeXRnPGe8xHj08K6SlUHGQAnR72mDxK5VFFpu6sY=
github.com/theopenlane/riverboat v0.0.7 h1:zT/H6ipMRLVYQEGLGgwUI6B1wXEBS0ARhkfzv+Pekwg=
github.com/theopenlane/riverboat v0.0.7/go.mod h1:ke4bnkUNiqsQs7arZlIynAbDsy8uqY6yUSRUD1bmrBg=
github.com/theopenlane/utils v0.3.0 h1:wLduNgi065CeRu4RvRG5p1Sz8H5S+KDiwSdSQ/Jc9Kg=
github.com/theopenlane/utils v0.3.0/go.mod h1:ydEtwhmEvkVt3KKmNqiQiSY5b3rKH7U4umZ3QbFDsxU=
github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
Expand Down

0 comments on commit e1b785b

Please sign in to comment.