Skip to content

Commit

Permalink
Merge pull request #2 from observeralone/standard
Browse files Browse the repository at this point in the history
feat: release 0.0.3
  • Loading branch information
observeralone authored Apr 27, 2023
2 parents 4e187b5 + f932b84 commit 0ab8075
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions Src/Tracers/Zipkin/JSONSpanSerializerV2.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/**
* Copyright 2023 MegaEase
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

using System.Collections.Generic;
/**
* Copyright 2023 MegaEase
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

using System.Collections.Generic;
using System.IO;
using System.Net;
using System;
Expand Down Expand Up @@ -190,7 +190,7 @@ private static void SerializeEndPoint(StreamWriter writer, IPEndPoint endPoint,
}
if (serviceName != null)
{
writer.WriteField(JSONSpanSerializerV2.serviceName, zipkin4net.Tracers.Zipkin.SerializerUtils.ToEscaped(serviceName));
writer.WriteField(JSONSpanSerializerV2.serviceName, zipkin4net.Tracers.Zipkin.SerializerUtils.ToEscaped(serviceName.ToLower()));
}
writer.Write(closingBrace);
}
Expand Down
2 changes: 1 addition & 1 deletion Src/easeagent.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Copyright>Criteo</Copyright>
<Owners>Criteo</Owners>
<Description>C# Easeagent Tracer</Description>
<PackageVersion>0.0.2</PackageVersion>
<PackageVersion>0.0.3</PackageVersion>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
Expand Down

0 comments on commit 0ab8075

Please sign in to comment.