We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 812ebce commit f8bc8ffCopy full SHA for f8bc8ff
.github/workflows/test.yml
@@ -32,7 +32,7 @@ jobs:
32
- if: ${{ always() }}
33
run: |
34
go get -u github.com/vakenbolt/go-test-report
35
- cat tests.json | go-test-report
+ cat tests.json | $(go env GOPATH)/bin/go-test-report
36
37
uses: actions/upload-artifact@v3
38
with:
pkg/roles/dns/zone.go
@@ -242,7 +242,7 @@ func (z *Zone) watchZoneRecords(ctx context.Context) {
242
}
243
244
func (z *Zone) StopWatchingRecords() {
245
- if z.recordsWatchCtx != nil {
+ if z != nil && z.recordsWatchCtx != nil {
246
z.recordsWatchCtx()
247
248
0 commit comments