|
4 | 4 | using System.Globalization;
|
5 | 5 | using System.Reflection;
|
6 | 6 | using System.Text;
|
| 7 | +using System.Text.RegularExpressions; |
7 | 8 | using Cosmos.DataTransfer.Interfaces;
|
8 | 9 | using Microsoft.Azure.Cosmos;
|
9 | 10 | using Microsoft.Extensions.Configuration;
|
@@ -33,8 +34,8 @@ public async Task WriteAsync(IAsyncEnumerable<IDataItem> dataItems, IConfigurati
|
33 | 34 |
|
34 | 35 | var entryAssembly = Assembly.GetEntryAssembly();
|
35 | 36 | bool isShardedImport = false;
|
36 |
| - string sourceName = dataSource.DisplayName; |
37 |
| - string sinkName = DisplayName; |
| 37 | + string sourceName = StripSpecialChars(dataSource.DisplayName); |
| 38 | + string sinkName = StripSpecialChars(DisplayName); |
38 | 39 | string userAgentString = string.Format(CultureInfo.InvariantCulture, "{0}-{1}-{2}-{3}{4}",
|
39 | 40 | entryAssembly == null ? "dtr" : entryAssembly.GetName().Name,
|
40 | 41 | Assembly.GetExecutingAssembly().GetName().Version,
|
@@ -119,6 +120,11 @@ void ReportCount(int i)
|
119 | 120 | logger.LogInformation("Added {AddedCount} total records in {TotalSeconds}s", addedCount, $"{timer.ElapsedMilliseconds / 1000.0:F2}");
|
120 | 121 | }
|
121 | 122 |
|
| 123 | + private static string StripSpecialChars(string displayName) |
| 124 | + { |
| 125 | + return Regex.Replace(displayName, "[^\\w]", "", RegexOptions.Compiled); |
| 126 | + } |
| 127 | + |
122 | 128 | private static AsyncRetryPolicy GetRetryPolicy(int maxRetryCount, int initialRetryDuration)
|
123 | 129 | {
|
124 | 130 | int retryDelayBaseMs = initialRetryDuration / 2;
|
|
0 commit comments