Skip to content

Commit 5e8fd7d

Browse files
Copilothotlong
andcommitted
Fix code review feedback: health check example and KMS ARN format
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent f4588f3 commit 5e8fd7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/docs/references/integration/connector-file-storage.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ const s3Connector: FileStorageConnector = {
204204
encryption: {
205205
enabled: true,
206206
algorithm: 'aws:kms',
207-
kmsKeyId: 'arn:aws:kms:us-east-1:123456789:key/abc-123',
207+
kmsKeyId: 'arn:aws:kms:us-east-1:123456789012:key/abc-123',
208208
},
209209
};
210210
```

content/docs/references/system/startup-orchestrator.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Configuration for plugin startup orchestration.
6666
const options: StartupOptions = {
6767
timeout: 30000,
6868
rollbackOnFailure: true,
69-
healthCheck: false,
69+
healthCheck: true, // Enable health checks for production
7070
parallel: false
7171
};
7272
```

0 commit comments

Comments
 (0)