Adjusted error handling

This commit is contained in:
Kaltenbach, Jonas 2022-10-24 10:44:34 +02:00
parent 0a3c465555
commit 13b599a634
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import (
"context"
"encoding/base64"
"encoding/binary"
"errors"
"fmt"
"io"
"net/http"
@ -351,6 +352,9 @@ func getSasToken(sasUrl string) (sas string, err error) {
return "", err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return "", errors.New("Error at requesting SAS Token: " + resp.Status)
}
sasResponse, readErr := io.ReadAll(resp.Body)
if readErr != nil {
return "", readErr