[client] Increase logout timeout (#4311)

This commit is contained in:
Viktor Liu
2025-08-08 19:16:48 +02:00
committed by GitHub
parent 0f52144894
commit 82937ba184
2 changed files with 2 additions and 2 deletions

View File

@@ -503,7 +503,7 @@ func (c *GrpcClient) Logout() error {
return fmt.Errorf("get server public key: %w", err)
}
mgmCtx, cancel := context.WithTimeout(c.ctx, time.Second*5)
mgmCtx, cancel := context.WithTimeout(c.ctx, time.Second*15)
defer cancel()
message := &proto.Empty{}