File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1717 submodules : recursive
1818 - uses : actions/setup-go@v4
1919 with :
20- go-version : " 1.25 "
20+ go-version : " 1.23 "
2121 - name : Lint
2222 uses : golangci/golangci-lint-action@v8
2323 with :
Original file line number Diff line number Diff line change 11module github.com/nexus-rpc/sdk-go
22
3- go 1.25
3+ go 1.23
44
55require github.com/stretchr/testify v1.8.4
66
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ func startOperation(
7979 options StartOperationOptions ,
8080) (HandlerStartOperationResult [any ], error ) {
8181 t .Helper ()
82- ctx := WithHandlerContext (t . Context (), HandlerInfo {
82+ ctx := WithHandlerContext (context . Background (), HandlerInfo {
8383 Service : svc .Name ,
8484 Operation : op .Name (),
8585 Header : options .Header ,
@@ -96,7 +96,7 @@ func cancelOperation(
9696 options CancelOperationOptions ,
9797) error {
9898 t .Helper ()
99- ctx := WithHandlerContext (t . Context (), HandlerInfo {
99+ ctx := WithHandlerContext (context . Background (), HandlerInfo {
100100 Service : svc .Name ,
101101 Operation : op .Name (),
102102 Header : options .Header ,
You can’t perform that action at this time.
0 commit comments