Skip to content

Commit

Permalink
Make m5 the default instance class (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaw authored Oct 2, 2023
1 parent 83dded1 commit d5637ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aptible/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (c *Client) CreateDatabase(accountID int64, attrs DBCreateAttrs) (Database,

// Setting the container profile on provision is not currently supported so
// if a non-default container profile is requested, restart with the desired profile
if attrs.ContainerProfile != "" && attrs.ContainerProfile != "m4" {
if attrs.ContainerProfile != "" && attrs.ContainerProfile != "m5" {
requestType := "restart"
request := models.AppRequest24{
Type: &requestType,
Expand Down

0 comments on commit d5637ef

Please sign in to comment.