Skip to content

Commit 2fb40a5

Browse files
authored
docs: renamed flamingockLocks to flamingockLock (#82)
1 parent 1dfee2a commit 2fb40a5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/audit-stores/community/couchbase-audit-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ These configurations can be customized via `.withXXX()` methods with **no global
102102
| `Auto Create` | `.withAutoCreate(enabled)` | `true` | Auto-create collections and indexes |
103103
| `Scope Name` | `.withScopeName(name)` | `_default` | Scope where audit collections will be created |
104104
| `Audit Repository Name` | `.withAuditRepositoryName(name)` | `flamingockAuditLogs` | Collection name for audit entries |
105-
| `Lock Repository Name` | `.withLockRepositoryName(name)` | `flamingockLocks` | Collection name for distributed locks |
105+
| `Lock Repository Name` | `.withLockRepositoryName(name)` | `flamingockLock` | Collection name for distributed locks |
106106

107107
⚠️ **Warning**: Ensure your Couchbase user has permissions to create collections if `autoCreate` is enabled.
108108

docs/audit-stores/community/dynamodb-audit-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ These configurations can be customized via `.withXXX()` methods with **no global
100100
| `Read Capacity Units` | `.withReadCapacityUnits(units)` | `5` | Read capacity units (PROVISIONED mode only) |
101101
| `Write Capacity Units` | `.withWriteCapacityUnits(units)` | `5` | Write capacity units (PROVISIONED mode only) |
102102
| `Audit Repository Name` | `.withAuditRepositoryName(name)` | `flamingockAuditLogs` | Table name for audit entries |
103-
| `Lock Repository Name` | `.withLockRepositoryName(name)` | `flamingockLocks` | Table name for distributed locks |
103+
| `Lock Repository Name` | `.withLockRepositoryName(name)` | `flamingockLock` | Table name for distributed locks |
104104

105105
⚠️ **Warning**: Adjust capacity units based on your workload. Under-provisioning may cause throttling.
106106
Consider using **ON_DEMAND** billing mode for unpredictable workloads.

docs/audit-stores/community/mongodb-audit-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ These configurations can be customized via `.withXXX()` methods with **no global
7878
| `ReadConcern` | `.withReadConcern(concern)` | `MAJORITY` | Read isolation level |
7979
| `ReadPreference` | `.withReadPreference(pref)` | `PRIMARY` | Server selection for reads |
8080
| `Audit Repository Name` | `.withAuditRepositoryName(name)` | `flamingockAuditLogs` | Collection name for audit entries |
81-
| `Lock Repository Name` | `.withLockRepositoryName(name)` | `flamingockLocks` | Collection name for distributed locks |
81+
| `Lock Repository Name` | `.withLockRepositoryName(name)` | `flamingockLock` | Collection name for distributed locks |
8282

8383
**Important**: These default values are optimized for maximum consistency and should ideally be left unchanged. Override them only for testing purposes or exceptional cases.
8484

docs/testing/springboot-integration-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ static void overrideProperties(DynamicPropertyRegistry registry) {
131131
registry.add("flamingock.dynamodb.writeCapacityUnits", () -> 5L);
132132
registry.add("flamingock.dynamodb.autoCreate", () -> true);
133133
registry.add("flamingock.dynamodb.auditRepositoryName", () -> "flamingockAuditLogs");
134-
registry.add("flamingock.dynamodb.lockRepositoryName", () -> "flamingockLocks");
134+
registry.add("flamingock.dynamodb.lockRepositoryName", () -> "flamingockLock");
135135
}
136136
```
137137

0 commit comments

Comments
 (0)