Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions syz-manager/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,11 @@
}

func RunManager(mode *Mode, cfg *mgrconfig.Config) {
// localhost is going to be used later, notify users

Check failure on line 245 in syz-manager/manager.go

View workflow job for this annotation

GitHub Actions / build

lint: Standalone comments should be complete sentences with first word capitalized and a period at the end (syz-linter)
if _, err := net.LookupHost("localhost"); err != nil {
log.Fatalf("'localhost' is not resolving on this system, configure your DNS resolver")
}

var vmPool *vm.Pool
if !cfg.VMLess {
var err error
Expand Down
Loading