Skip to content

Instantly share code, notes, and snippets.

@Tahvok

Tahvok/error Secret

Last active June 6, 2017 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tahvok/b7a9288f0f27fb5b4fca1deb153b5bdd to your computer and use it in GitHub Desktop.
Save Tahvok/b7a9288f0f27fb5b4fca1deb153b5bdd to your computer and use it in GitHub Desktop.
2017-06-06 08:48:37.649 40030 ERROR keystone.common.wsgi DBDataError: (pymysql.err.DataError) (1264, u"Out of range value for column 'enabled' at row 1") [SQL: u'INSERT INTO user (id, domain_id, enabled, extra, default_project_id, created_at, last_active_at) VALUES (%(id)s, %(domain_id)s, %(enabled)s, %(extra)s, %(default_project_id)s, %(created_at)s, %(last_active_at)s)'] [parameters: {'last_active_at': None, 'extra': '{}', 'created_at': datetime.datetime(2017, 6, 6, 13, 48, 37, 638247), 'enabled': 66048, 'id': u'08fef488c3253f8f7b5392bc56db901210d274df68c9194abfc8fb4ced396fee', 'default_project_id': None, 'domain_id': u'90841cb038134e179045524c53f67c82'}]
MariaDB [keystone]> desc user;
+--------------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------------------+-------------+------+-----+---------+-------+
| id | varchar(64) | NO | PRI | NULL | |
| extra | text | YES | | NULL | |
| enabled | tinyint(1) | YES | | NULL | |
| default_project_id | varchar(64) | YES | | NULL | |
| created_at | datetime | YES | | NULL | |
| last_active_at | date | YES | | NULL | |
| domain_id | varchar(64) | NO | MUL | NULL | |
+--------------------+-------------+------+-----+---------+-------+
7 rows in set (0.01 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment