We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee7ab5 commit 11d3518Copy full SHA for 11d3518
test/OpenTelemetry.Instrumentation.SqlClient.Tests/SqlClientIntegrationTestsFixture.cs
@@ -12,6 +12,7 @@ namespace OpenTelemetry.Instrumentation.SqlClient.Tests;
12
public sealed class SqlClientIntegrationTestsFixture : IAsyncLifetime
13
{
14
// The Microsoft SQL Server Docker image is not compatible with ARM devices, such as Macs with Apple Silicon.
15
+ // See https://github.com/microsoft/mssql-docker/issues/881.
16
public IContainer DatabaseContainer { get; } = Architecture.Arm64.Equals(RuntimeInformation.ProcessArchitecture) ? CreateSqlEdge() : CreateMsSql();
17
18
public Task InitializeAsync()
0 commit comments