Skip to content

Commit

Permalink
Fix capitalisation of zipkin
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-richardson committed Nov 28, 2024
1 parent 4b5e857 commit eb18024
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.web.openapi.PluginDescriptor;
import org.jetbrains.annotations.NotNull;

Expand Down Expand Up @@ -30,7 +30,7 @@ public IOTELEndpointHandler getOTELEndpointHandler(OTELService otelService)
case HONEYCOMB:
return new HoneycombOTELEndpointHandler(pluginDescriptor);
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 @@ -15,10 +15,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 eb18024

Please sign in to comment.