If GET /index fails, try agin in 500ms

This commit is contained in:
Elara 2020-12-05 20:55:33 -08:00
parent afabdd2ceb
commit 56ba1e6404
1 changed files with 7 additions and 1 deletions

View File

@ -13,6 +13,7 @@ import (
"path/filepath" "path/filepath"
"strconv" "strconv"
"strings" "strings"
"time"
) )
// Save encrypted key to file // Save encrypted key to file
@ -117,9 +118,14 @@ func RecvFiles(senderAddr string) {
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr}).Hook(FatalHook{}) log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr}).Hook(FatalHook{})
// Get server address by getting the IP without the port, prepending http:// and appending :9898 // Get server address by getting the IP without the port, prepending http:// and appending :9898
serverAddr := "http://" + strings.Split(senderAddr, ":")[0] + ":9898" serverAddr := "http://" + strings.Split(senderAddr, ":")[0] + ":9898"
var response *http.Response
// GET /index on sender's HTTP server // GET /index on sender's HTTP server
response, err := http.Get(serverAddr + "/index") response, err := http.Get(serverAddr + "/index")
if err != nil { log.Fatal().Err(err).Msg("Error getting index") } if err != nil {
time.Sleep(500*time.Millisecond)
response, err = http.Get(serverAddr + "/index")
if err != nil { log.Fatal().Err(err).Msg("Error getting index") }
}
// Close response body at the end of this function // Close response body at the end of this function
defer response.Body.Close() defer response.Body.Close()
// Create index slice for storage of file index // Create index slice for storage of file index