Skip to content

Commit

Permalink
fix typo in server error
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Apr 7, 2020
1 parent 85dcb12 commit dd85693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ func serverListener_tcp() (net.Listener, error) {
}

if minPort > maxPort {
return nil, fmt.Errorf("ENV_MIN_PORT value of %d is greater than PLUGIN_MAX_PORT value of %d", minPort, maxPort)
return nil, fmt.Errorf("PLUGIN_MIN_PORT value of %d is greater than PLUGIN_MAX_PORT value of %d", minPort, maxPort)
}

for port := minPort; port <= maxPort; port++ {
Expand Down

0 comments on commit dd85693

Please sign in to comment.