You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"level":"debug","service":"client","time":"2025-03-14T09:23:28.579156+01:00","message":"connecting to zyw6q.cloud.onhatchet.run:443 with TLS server name zyw6q.cloud.onhatchet.run"}
{"level":"debug","service":"client","time":"2025-03-14T09:23:34.51773+01:00","message":"grpc_retry attempt: 1, backoff for rpc error: code = Unavailable desc = unexpected HTTP status code received from server: 503 (Service Unavailable); transport: received unexpected content-type \"text/html\""}
{"level":"debug","service":"client","time":"2025-03-14T09:23:43.888324+01:00","message":"grpc_retry attempt: 2, backoff for rpc error: code = Unavailable desc = unexpected HTTP status code received from server: 503 (Service Unavailable); transport: received unexpected content-type \"text/html\""}
Versions:
module hatchet-demo
go 1.23.0
toolchain go1.23.4
require github.com/hatchet-dev/hatchet v0.55.5
Client:
package main
import (
"context"
"fmt"
"log/slog"
"os"
"strconv"
"time"
"hatchet-demo/internal/types"
"github.com/hatchet-dev/hatchet/pkg/client"
"github.com/hatchet-dev/hatchet/pkg/cmdutils"
"github.com/hatchet-dev/hatchet/pkg/worker"
)
func main() {
token := os.Getenv("HATCHET_CLIENT_TOKEN")
if token == "" {
slog.Error("HATCHET_CLIENT_TOKEN is not set")
os.Exit(1)
}
hatchetClient, err := client.New(
client.WithToken(token),
)
if err != nil {
slog.Error(err.Error())
os.Exit(1)
}
...
The text was updated successfully, but these errors were encountered:
Versions:
Client:
The text was updated successfully, but these errors were encountered: