Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cmd/saga/start/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ func (s *Service) CreateOnboardingWorkflow(
ctx context.Context,
req *connect.Request[temporalPB.CreateOnboardingWorkflowRequest],
) (*connect.Response[temporalPB.CreateOnboardingWorkflowResponse], error) {

log.Info("received request", "headers", req.Header())

temporalClient := s.client

// Validate the request
Expand Down
11 changes: 10 additions & 1 deletion tailcall/server.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@ schema
)

# Specify a base url for all HTTP requests.
@upstream(timeout: 5) {
@upstream(timeout: 5)

@telemetry(
export: {
otlp: {
url: "http://localhost:4317"
}
}
) {

query: Query
mutation: Mutation
}
Expand Down
2 changes: 1 addition & 1 deletion taskfiles/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tasks:
cmds:
- pkgx killport 8000
- |
pkgx tailcall start \
pkgx tailcall@latest start \
./tailcall/server.graphql \
./tailcall/org.graphql \
./tailcall/profile.graphql \
Expand Down