Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 2023-06-05-aws-ending-support-mysql-57.md #2438

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _posts/2023-06-05-aws-ending-support-mysql-57.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ To upgrade your existing MySQL 5.7 database to MySQL 8.0:
cf unbind-service <app-name> <mysql57-database-name>
```

1. Restage your application (the `--rolling` flag is optional but ensures no downtime):
1. Restage your application (the `--strategy rolling` flag is optional but ensures no downtime):

```shell
cf restage <app-name> --rolling
cf restage <app-name> --strategy rolling
```

1. Verify that your application is still working and operating with the expected data.
Expand Down
Loading