Skip to content

Commit

Permalink
fix auto_explain config setting (#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhudson authored Feb 17, 2024
1 parent ba0a81b commit b6bc459
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tembo-operator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "controller"
description = "Tembo Operator for Postgres"
version = "0.35.1"
version = "0.35.2"
edition = "2021"
default-run = "controller"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion tembo-operator/src/stacks/templates/oltp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ postgres_config:
value: 'on'
- name: log_min_duration_statement # https://www.postgresql.org/docs/15/runtime-config-logging.html
value: 1000
- name: auto_explain.log_min_duration_statement
- name: auto_explain.log_min_duration
value: 1000ms
- name: statement_timeout
value: 86400000
Expand Down
2 changes: 1 addition & 1 deletion tembo-operator/yaml/sample-oltp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
value: "on"
- name: log_min_duration_statement # https://www.postgresql.org/docs/15/runtime-config-logging.html
value: "1000"
- name: auto_explain.log_min_duration_statement
- name: auto_explain.log_min_duration
value: "1000ms"
- name: statement_timeout
value: "86400000"
Expand Down
6 changes: 3 additions & 3 deletions tembo-stacks/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tembo-stacks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tembo-stacks"
description = "Tembo Stacks for Postgres"
version = "0.3.2"
version = "0.3.3"
authors = ["tembo.io"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -16,6 +16,6 @@ schemars = {version = "0.8.12", features = ["chrono"]}
k8s-openapi = { version = "0.18.0", features = ["v1_25", "schemars"], default-features = false } # This version has to be in line with the same version we use in the controller
serde = "1.0.152"
serde_yaml = "0.9.21"
tembo-controller = { package = "controller", version = "0.35.0" }
tembo-controller = { package = "controller", version = "0.35.1" }
tracing = "0.1"
utoipa = { version = "3", features = ["actix_extras", "chrono"] }

0 comments on commit b6bc459

Please sign in to comment.