GAE Golang - limit czasu urlfetch?

Mam problemy z limitami czasu urlfetch w Google App Engine w Go. Wydaje się, że aplikacja nie chce mieć dłuższego czasu niż około 5 sekund (ignoruje dłuższy czas oczekiwania i limit czasu po swoim czasie).

Mój kod to:

var TimeoutDuration time.Duration = time.Second*30

func Call(c appengine.Context, address string, allowInvalidServerCertificate bool, method string, id interface{}, params []interface{})(map[string]interface{}, error){
    data, err := json.Marshal(map[string]interface{}{
        "method": method,
        "id":     id,
        "params": params,
    })
    if err != nil {
        return nil, err
    }

    req, err:=http.NewRequest("POST", address, strings.NewReader(string(data)))
    if err!=nil{
        return nil, err
    }

    tr := &urlfetch.Transport{Context: c, Deadline: TimeoutDuration, AllowInvalidServerCertificate: allowInvalidServerCertificate}

    resp, err:=tr.RoundTrip(req)
    if err != nil {
        return nil, err
    }
    defer resp.Body.Close()
    body, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        return nil, err
    }
    result := make(map[string]interface{})
    err = json.Unmarshal(body, &result)
    if err != nil {
        return nil, err
    }
    return result, nil
}

Bez względu na to, co próbuję ustawićTimeoutDuration , aplikacja wygaśnie po około 5 sekundach. Jak temu zapobiec? Czy popełniłem błąd w kodzie?

questionAnswers(5)

yourAnswerToTheQuestion