Move the 8899 integer and string literals into a const named DefaultApiServerPort in shared (#367)

This commit is contained in:
M. Mert Yıldıran
2021-10-17 15:28:33 +03:00
committed by GitHub
parent 9d179c7227
commit 167b17dfd2
4 changed files with 9 additions and 4 deletions

View File

@@ -12,12 +12,14 @@ import (
"strings"
"syscall"
"time"
"github.com/up9inc/mizu/shared"
)
const (
longRetriesCount = 100
shortRetriesCount = 10
defaultApiServerPort = 8899
defaultApiServerPort = shared.DefaultApiServerPort
defaultNamespaceName = "mizu-tests"
defaultServiceName = "httpbin"
defaultEntriesCount = 50