mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-23 01:43:54 +00:00
🧙♂️ Add IPv6 support for Prefork
This commit is contained in:
parent
61c21e8ec4
commit
7c2f856ef3
@ -4,7 +4,6 @@ import (
|
|||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -82,7 +81,7 @@ func Test_App_Prefork_TCP6_Addr(t *testing.T) {
|
|||||||
}()
|
}()
|
||||||
|
|
||||||
err := app.Listen("[::1]:3200")
|
err := app.Listen("[::1]:3200")
|
||||||
utils.AssertEqual(t, true, strings.Contains(err.Error(), "exit status"), err.Error())
|
utils.AssertEqual(t, true, err == nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_App_Prefork_Child_Process_Never_Show_Startup_Message(t *testing.T) {
|
func Test_App_Prefork_Child_Process_Never_Show_Startup_Message(t *testing.T) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user