From 446727b90df207869f845082f38ae6600088012a Mon Sep 17 00:00:00 2001 From: Owais Lone Date: Thu, 2 Apr 2020 22:34:57 +0530 Subject: [PATCH] Updated default port for OTLP exporter (#611) OpenCensus used `55678` as the default. OTLP used `55680`. This commit fixes the incorrect default port specified for the OTLP exporter. --- exporters/otlp/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exporters/otlp/options.go b/exporters/otlp/options.go index c5aea24bf4d..d809ec0a209 100644 --- a/exporters/otlp/options.go +++ b/exporters/otlp/options.go @@ -22,7 +22,7 @@ import ( ) const ( - DefaultCollectorPort uint16 = 55678 + DefaultCollectorPort uint16 = 55680 DefaultCollectorHost string = "localhost" DefaultNumWorkers uint = 1 )