Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions manifests/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ manifest:
tests/integrations/test_inferred_proxy.py::Test_AWS_API_Gateway_Inferred_Span_Creation_v2: missing_feature
tests/integrations/test_mongo.py::Test_Mongo: missing_feature (Endpoint is not implemented on weblog)
tests/integrations/test_otel_drop_in.py::Test_Otel_Drop_In: missing_feature
tests/integrations/test_service_overrides.py::Test_SqlServiceNameSource: irrelevant (Only implemented for Java)
tests/integrations/test_service_overrides.py::Test_SqlServiceNameSource: v3.40.0
tests/integrations/test_sql.py::Test_Sql: missing_feature (Endpoint is not implemented on weblog)
tests/k8s_lib_injection/test_k8s_lib_injection_appsec.py::TestK8sLibInjectionAppsecClusterEnabled: v3.36.0
tests/k8s_lib_injection/test_k8s_lib_injection_appsec.py::TestK8sLibInjectionAppsecDisabledByDefault: v3.36.0
Expand Down Expand Up @@ -1009,7 +1009,7 @@ manifest:
tests/parametric/test_tracer.py::Test_ProcessTags_ServiceName: missing_feature
tests/parametric/test_tracer.py::Test_TracerSCITagging: v2.48.0
tests/parametric/test_tracer.py::Test_TracerServiceNameSource::test_tracer_manual_service_name_sets_srv_src: irrelevant (Only implemented for Java)
tests/parametric/test_tracer.py::Test_TracerServiceNameSource::test_tracer_no_srv_src_when_service_not_manually_set: irrelevant (Only implemented for Java)
tests/parametric/test_tracer.py::Test_TracerServiceNameSource::test_tracer_no_srv_src_when_service_not_manually_set: v3.40.0
tests/parametric/test_tracer.py::Test_TracerUniversalServiceTagging::test_tracer_service_name_environment_variable: "missing_feature (FIXME: library test client sets empty string as the service name)"
tests/parametric/test_tracer_flare.py::TestTracerFlareV1: v2.48.0
tests/remote_config/test_remote_configuration.py::Test_RemoteConfigurationExtraServices: v2.36.0
Expand Down
6 changes: 3 additions & 3 deletions utils/build/docker/dotnet/weblog/Dependencies/Sql.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ private static void SetupSqliteDb()
{
var commands = new string[]
{
"CREATE TABLE users (user TEXT, pwd TEXT)",
"INSERT INTO users VALUES ('shaquille_oatmeal', 'Value1')",
"INSERT INTO users VALUES ('Key2', 'Value2')",
"CREATE TABLE users (id TEXT, user TEXT, pwd TEXT)",
"INSERT INTO users VALUES ('1', 'shaquille_oatmeal', 'Value1')",
"INSERT INTO users VALUES ('2', 'Key2', 'Value2')",
};

foreach(var command in commands)
Expand Down
Loading