Skip to content

Commit

Permalink
Fix capitalisation of zipkin (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-richardson authored Dec 1, 2024
1 parent 107e6f4 commit 631f147
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import com.octopus.teamcity.opentelemetry.server.endpoints.custom.CustomOTELEndpointHandler;
import com.octopus.teamcity.opentelemetry.server.endpoints.honeycomb.HoneycombOTELEndpointHandler;
import com.octopus.teamcity.opentelemetry.server.endpoints.zipkin.ZipKinOTELEndpointHandler;
import com.octopus.teamcity.opentelemetry.server.endpoints.zipkin.ZipkinOTELEndpointHandler;
import jetbrains.buildServer.serverSide.TeamCityNodes;
import jetbrains.buildServer.web.openapi.PluginDescriptor;
import org.jetbrains.annotations.NotNull;
Expand Down Expand Up @@ -35,7 +35,7 @@ public IOTELEndpointHandler getOTELEndpointHandler(OTELService otelService)
case HONEYCOMB:
return new HoneycombOTELEndpointHandler(pluginDescriptor, teamcityNodesService);
case ZIPKIN:
return new ZipKinOTELEndpointHandler(pluginDescriptor);
return new ZipkinOTELEndpointHandler(pluginDescriptor);
case CUSTOM:
return new CustomOTELEndpointHandler(pluginDescriptor);
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

import static com.octopus.teamcity.opentelemetry.common.PluginConstants.*;

public class ZipKinOTELEndpointHandler implements IOTELEndpointHandler {
public class ZipkinOTELEndpointHandler implements IOTELEndpointHandler {
private final PluginDescriptor pluginDescriptor;

public ZipKinOTELEndpointHandler(
public ZipkinOTELEndpointHandler(
PluginDescriptor pluginDescriptor) {
this.pluginDescriptor = pluginDescriptor;
}
Expand Down

0 comments on commit 631f147

Please sign in to comment.