Skip to content

Commit b705fac

Browse files
remove debug print and adjust timeout handling
1 parent ff67486 commit b705fac

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ test: generate/zz_filesystem_generated.go ## Run core unit tests
7373

7474
.PHONY: check
7575
check: $(BIN_GOLANGCI_LINT) ## Check code quality (lint)
76-
$(BIN_GOLANGCI_LINT) run --timeout 600s
77-
cd test && $(BIN_GOLANGCI_LINT) run --timeout 600s
76+
$(BIN_GOLANGCI_LINT) run --timeout 300s
77+
cd test && $(BIN_GOLANGCI_LINT) run --timeout 300s
7878

7979
$(BIN_GOLANGCI_LINT):
8080
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./bin v2.5.0

main.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
package main
22

33
import (
4-
"fmt"
54
"knative.dev/func/pkg/app"
65
)
76

87
func main() {
9-
fmt.Println("project is running fine")
108
app.Main()
119
}

pkg/creds/auth.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"credsStore": ""
3+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/var/example/absolute/link
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c://some/absolute/path

0 commit comments

Comments
 (0)