Skip to content

Commit

Permalink
release: v0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sonirico committed Feb 15, 2023
1 parent 7b0ddd1 commit 164627b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion call.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 164627b

Please sign in to comment.