Skip to content

Commit 4ad0c51

Browse files
committed
fixing attribute sanitation exception
1 parent 8663c50 commit 4ad0c51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DigmaConfigurationOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class DigmaConfigurationOptions
2525
public string CommitIdEnvVariable { get; set; } = DEFAULT_COMMIT_ENV_VAR;
2626
public string EnvironmentEnvVariable { get; set; } = DEFAULT_ENV_ENV_VAR;
2727
public string? CommitId { get; set; } = null;
28-
public string? SpanMappingPattern { get; set; } = null;
29-
public string? SpanMappingReplacement { get; set; } = null;
28+
public string? SpanMappingPattern { get; set; } = "";
29+
public string? SpanMappingReplacement { get; set; } = "";
3030
}
3131
}

0 commit comments

Comments
 (0)