@digitraffic/common 2023.1.30-2 → 2023.1.31-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,7 +33,7 @@ class DbStack extends aws_cdk_lib_1.Stack {
33
33
  parameters: {
34
34
  "pg_stat_statements.track": "ALL",
35
35
  random_page_cost: "1",
36
- work_mem: "512MB",
36
+ work_mem: "524288", // 512 MiB
37
37
  },
38
38
  })
39
39
  : aws_rds_1.ParameterGroup.fromParameterGroupName(this, "ParameterGroup", `default.aurora-postgresql${configuration.dbVersion.auroraPostgresMajorVersion}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitraffic/common",
3
- "version": "2023.01.30-2",
3
+ "version": "2023.01.31-1",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
@@ -94,7 +94,7 @@ export class DbStack extends Stack {
94
94
  parameters: {
95
95
  "pg_stat_statements.track": "ALL",
96
96
  random_page_cost: "1",
97
- work_mem: "512MB",
97
+ work_mem: "524288", // 512 MiB
98
98
  },
99
99
  }
100
100
  )