Skip to content

Commit b00f999

Browse files
committed
Fix simple error
1 parent 9ebf099 commit b00f999

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zebrium/zebrium.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func NewZebriumAdapter(route *router.Route) (router.LogAdapter, error) {
8181
log.Printf("%s=%s\n", AwsExecEnv, awsEnvVal)
8282
if awsEnvVal != "" && strings.HasPrefix(awsEnvVal, "AWS_ECS_") {
8383
log.Printf("Detected running on ECS (%s=%s), set platform to ecs\n", AwsExecEnv, awsEnvVal)
84-
platform := "ecs"
84+
platform = "ecs"
8585
}
8686

8787
ingestSizeStr := os.Getenv(MaxIngestSizeEnvVar)

0 commit comments

Comments
 (0)