Skip to content

Commit

Permalink
Update content/300-accelerate/650-troubleshoot.mdx
Browse files Browse the repository at this point in the history
Co-authored-by: Nikolas <[email protected]>
  • Loading branch information
jharrell and nikolasburk authored Dec 16, 2024
1 parent bba4b0a commit cc789e2
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions content/300-accelerate/650-troubleshoot.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,17 +129,23 @@ This error can happen when the wrong credentials are provided to Prisma Accelera

### Error with MySQL (Aiven): "We were unable to process your request. Please refresh and try again."

**Issue**
#### Issue

When using an Aiven MySQL connection string that includes the `?ssl-mode=REQUIRED` parameter, you may encounter the following error:
*We were unable to process your request. Please refresh and try again.*

**Cause**
```
We were unable to process your request. Please refresh and try again.
```

#### Cause

The `ssl-mode=REQUIRED` parameter is incompatible with Accelerate, which leads to connection issues.

**Suggested Solution**
#### Suggested solution

To resolve this error, remove the `?ssl-mode=REQUIRED` parameter from your MySQL connection string.

**Example**
Original connection string: `mysql://username:password@host:port/database?ssl-mode=REQUIRED`
#### Example

Updated connection string: `mysql://username:password@host:port/database`
- Original connection string: `mysql://username:password@host:port/database?ssl-mode=REQUIRED`
- Updated connection string: `mysql://username:password@host:port/database`

0 comments on commit cc789e2

Please sign in to comment.