From 164627b24e6e61f4a49ff3d0a2bc01303aa619a3 Mon Sep 17 00:00:00 2001 From: Marcos Date: Wed, 15 Feb 2023 20:33:28 +0100 Subject: [PATCH] release: v0.7.3 --- Makefile | 5 ----- call.go | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Makefile b/Makefile index e4ffd39..32adb85 100644 --- a/Makefile +++ b/Makefile @@ -40,11 +40,6 @@ help: @echo "make bench - run go test including benchmarking" -.PHONY: build -build: - $(info: Make: Build) - go build -gcflags='-m -m' examples/compiler/*.go - .PHONY: format format: $(info: Make: Format) diff --git a/call.go b/call.go index 30c3a96..dc39886 100644 --- a/call.go +++ b/call.go @@ -112,7 +112,7 @@ func (c *Call[T]) CallEndpoint(ctx context.Context, e *Endpoint) (err error) { } func (c *Call[T]) callEndpoint(ctx context.Context, e *Endpoint) (err error) { - req, err := c.client.Request() + req, err := c.client.Request(ctx) defer func() { c.Req = req }() if err != nil {