Skip to content

Commit

Permalink
setting test url constant to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
uussoop committed Sep 8, 2023
1 parent 82ef86c commit 6670a51
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions raytest/tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@ func GetTest(InPort *int, Destination *string, TimeOut *int32) (int32, error) {
}},
}

link := Destination
// link := Destination
link := "http://youtube.com"
// timeout := int32(5000) // timeout in milliseconds
rtt, testerr := urlTest(client, link, TimeOut)
rtt, testerr := urlTest(client, &link, TimeOut)
if testerr != nil {
// fmt.Println("Error:", testerr)
return 0, testerr
Expand Down

0 comments on commit 6670a51

Please sign in to comment.