Update nova mysql db charset

It was set to the invalid value utf-8. This commit
updates it to utf8 so that it will work.
This commit is contained in:
Dan Bode 2012-04-24 12:20:38 -07:00
parent 1183a3885b
commit 593cbe6344
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class nova::db::mysql(
user => $user,
password => $password,
host => $host,
charset => 'utf-8',
charset => 'utf8',
# I may want to inject some sql
require => Class['mysql::server'],
}