Skip to content

Commit 16b9016

Browse files
authoredApr 24, 2024
Merge pull request #20 from comet-ml/thread_stack
Fix duplicate thread_stack parameter in RDS
2 parents 9720b23 + 4cb6482 commit 16b9016

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed
 

Diff for: ‎modules/comet_rds/main.tf

+1-6
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ resource "aws_rds_cluster_parameter_group" "cometml-cluster-pg" {
9797
parameter {
9898
apply_method = "pending-reboot"
9999
name = "thread_stack"
100-
value = "2000000"
100+
value = "6291456"
101101
}
102102
parameter {
103103
apply_method = "pending-reboot"
@@ -109,11 +109,6 @@ resource "aws_rds_cluster_parameter_group" "cometml-cluster-pg" {
109109
name = "log_bin_trust_function_creators"
110110
value = "1"
111111
}
112-
parameter {
113-
apply_method = "pending-reboot"
114-
name = "thread_stack"
115-
value = "6291456"
116-
}
117112
}
118113

119114
resource "aws_security_group" "mysql_sg" {

0 commit comments

Comments
 (0)
Please sign in to comment.