aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2022-08-23 11:10:41 +0200
committerGitHub <noreply@github.com>2022-08-23 11:10:41 +0200
commit33129c02f79c951189bc4ab7018e855b1f563bf0 (patch)
tree66edf1887bf912f8ac219e6eead43efad7ea8c84 /cmd
parent2668050e535be7527d5dea2e97309027cbc12560 (diff)
Add timeout parameter & trim URL (#2666)
A timeout of 10 seconds could cause issues with servers having a high `bcrypt_cost` configured in the config. This adds a parameter to manually configure the timeout, defaults to 30 seconds.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/create-account/main.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/cmd/create-account/main.go b/cmd/create-account/main.go
index bd053f2f..a9357f6d 100644
--- a/cmd/create-account/main.go
+++ b/cmd/create-account/main.go
@@ -66,10 +66,11 @@ var (
resetPassword = flag.Bool("reset-password", false, "Deprecated")
serverURL = flag.String("url", "https://localhost:8448", "The URL to connect to.")
validUsernameRegex = regexp.MustCompile(`^[0-9a-z_\-=./]+$`)
+ timeout = flag.Duration("timeout", time.Second*30, "Timeout for the http client when connecting to the server")
)
var cl = http.Client{
- Timeout: time.Second * 10,
+ Timeout: time.Second * 30,
Transport: http.DefaultTransport,
}
@@ -108,6 +109,8 @@ func main() {
logrus.Fatalln(err)
}
+ cl.Timeout = *timeout
+
accessToken, err := sharedSecretRegister(cfg.ClientAPI.RegistrationSharedSecret, *serverURL, *username, pass, *isAdmin)
if err != nil {
logrus.Fatalln("Failed to create the account:", err.Error())
@@ -124,8 +127,8 @@ type sharedSecretRegistrationRequest struct {
Admin bool `json:"admin"`
}
-func sharedSecretRegister(sharedSecret, serverURL, localpart, password string, admin bool) (accesToken string, err error) {
- registerURL := fmt.Sprintf("%s/_synapse/admin/v1/register", serverURL)
+func sharedSecretRegister(sharedSecret, serverURL, localpart, password string, admin bool) (accessToken string, err error) {
+ registerURL := fmt.Sprintf("%s/_synapse/admin/v1/register", strings.Trim(serverURL, "/"))
nonceReq, err := http.NewRequest(http.MethodGet, registerURL, nil)
if err != nil {
return "", fmt.Errorf("unable to create http request: %w", err)