File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ package main
9
9
import (
10
10
"flag"
11
11
"fmt"
12
- "log"
13
- "net/http"
14
12
"open_im_sdk/sdk_struct"
15
13
"open_im_sdk/ws_wrapper/utils"
16
14
"open_im_sdk/ws_wrapper/ws_local_server"
@@ -48,9 +46,9 @@ func main() {
48
46
wg .Add (1 )
49
47
fmt .Println ("ws server is starting" )
50
48
ws_local_server .WS .OnInit (* sdkWsPort )
51
- go func () {
52
- log .Println (http .ListenAndServe ("0.0.0.0:6060" , nil ))
53
- }()
49
+ // go func() {
50
+ // log.Println(http.ListenAndServe("0.0.0.0:6060", nil))
51
+ // }()
54
52
55
53
ws_local_server .WS .Run ()
56
54
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"flag"
11
11
"fmt"
12
12
"net/http"
13
- _ "net/http/pprof"
13
+ // _ "net/http/pprof"
14
14
"open_im_sdk/sdk_struct"
15
15
//"open_im_sdk/open_im_sdk"
16
16
log1 "log"
You can’t perform that action at this time.
0 commit comments