Skip to content

UTF8 decoding bug in the balena cloud log viewer #3722

@greg-blackcurrent

Description

@greg-blackcurrent

Aside: Did a quick experiment with Balena Cloud. Super impressed. Very smooth getting started for the first time.

I noticed a UTF8 decoding bug in the log viewer.

¿Yo? doesn't get rendered correctly.

See screenshot:

Image

My helloworld project looks like this:

package main

import (
	"fmt"
	"time"
)

func main() {
	for {
		fmt.Println(time.Now(), "¿Yo?")
		time.Sleep(5 * time.Second)
	}
}
module balena-exp

go 1.25
FROM golang:1.25 AS build

WORKDIR /go/src/app
COPY . .

RUN go mod download
#RUN go vet -v
#RUN go test -v

RUN CGO_ENABLED=0 go build -o /go/bin/app

FROM gcr.io/distroless/static-debian12

COPY --from=build /go/bin/app /
CMD ["/app"]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions