Skip to content

Commit a52202d

Browse files
committed
docs-aspire-ravendb - addressing comments
1 parent 198b9b3 commit a52202d

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Diff for: docs/community-toolkit/ravendb.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ builder.AddProject<Projects.ExampleProject>()
5050

5151
// After adding all resources, build and run the app...
5252
```
53-
> [!IMPORTANT]
53+
> [!IMPORTANT]
5454
> A valid RavenDB license is required. If you don’t have one yet, you can request a free Community license [here](https://ravendb.net/license/request/community).
5555
5656
When .NET Aspire adds a container image to the app host, as shown in the preceding example with the `docker.io/ravendb/ravendb` image, it creates a new RavenDB instance on your local machine. A reference to your RavenDB database resource (the `ravendb` variable) is added to the `ExampleProject`.
@@ -113,7 +113,7 @@ builder.AddProject<Projects.ExampleProject>()
113113
.WithReference(ravendb)
114114
.WaitFor(ravendb);
115115
```
116-
> [!IMPORTANT]
116+
> [!IMPORTANT]
117117
> Ensure the certificate path is accessible to the container by bind-mounting it to `/etc/ravendb/security`.
118118
119119
### Hosting integration health checks
@@ -213,7 +213,7 @@ public class ExampleService(
213213

214214
For more information on keyed services, see [.NET dependency injection: Keyed services](/dotnet/core/extensions/dependency-injection#keyed-services).
215215

216-
### Configuration
216+
### Configuration
217217

218218
The .NET Aspire RavenDB Client integration provides multiple configuration approaches and options to meet the requirements and conventions of your project.
219219

@@ -285,15 +285,14 @@ The .NET Aspire RavenDB client integration provides flexible configuration optio
285285
| `HealthCheckTimeout` | An `int?` value that indicates the RavenDB health check timeout in milliseconds. |
286286
| `DisableTracing` | A boolean value that indicates whether the OpenTelemetry tracing is disabled or not. |
287287

288-
289288
#### Client integration health checks
290289

291290
The .NET Aspire RavenDB client integration uses the configured client to perform a `IsHealthyAsync`. If the result is `true`, the health check is considered healthy, otherwise it's unhealthy. Likewise, if there's an exception, the health check is considered unhealthy with the error propagating through the health check failure.
292291

293292
## See also
294293

295294
- [RavenDB](https://ravendb.net/)
296-
- [ Running in a Docker Container](https://ravendb.net/docs/article-page/6.2/csharp/start/installation/running-in-docker-container)
295+
- [Running in a Docker Container](https://ravendb.net/docs/article-page/6.2/csharp/start/installation/running-in-docker-container)
297296
- [RavenDB Code](https://github.com/ravendb/ravendb)
298297
- [.NET Aspire Community Toolkit GitHub repo](https://github.com/CommunityToolkit/Aspire)
299298

0 commit comments

Comments
 (0)