Bug 1192436
Summary: | invalid byte sequence for encoding "UTF8": 0xfd on setup | ||
---|---|---|---|
Product: | Red Hat Enterprise Virtualization Manager | Reporter: | David Caro <dcaroest> |
Component: | ovirt-engine | Assignee: | Eli Mesika <emesika> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | Karolína Hajná <khajna> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 3.6.0 | CC: | amureini, bazulay, dcaroest, eedri, gklein, lsurette, pstehlik, rbalakri, Rhev-m-bugs, sbonazzo, srevivo, ykaul |
Target Milestone: | ovirt-3.6.0-rc | Keywords: | Regression |
Target Release: | 3.6.0 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2016-04-20 01:38:29 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | Infra | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
David Caro
2015-02-13 10:53:43 UTC
Eli, looks like /usr/share/ovirt-engine/dbscripts/data/00100_insert_users.sql contains invalid characters, can you take a look? I had created 2 databases 1) based on latest master named engine_master 2) based on 3.5 branch named engine_3_5 I had compared the admin entry in both databases and even the length of the external_id (to see if we have any hidden chars in the value) and found that both were exactly the same In other words, the entry of the admin user in master is exactly the same as in the 3.5 branch master database --------------- engine_1192436=# \x Expanded display is on. engine_1192436=# select * from users; -[ RECORD 1 ]-----------+------------------------------------- user_id | fdfc627c-d875-11e0-90f0-83df133b58cc name | admin surname | domain | internal username | admin department | email | note | last_admin_check_status | t external_id | fdfc627c-d875-11e0-90f0-83df133b58cc _create_date | 2015-02-15 11:02:54.277046+02 _update_date | namespace | * engine_1192436=# select length(external_id) from users; -[ RECORD 1 ] length | 36 3.5 database ------------- engine_3_5=# \x Expanded display is on. engine_3_5=# select * from users; -[ RECORD 1 ]-----------+------------------------------------- user_id | fdfc627c-d875-11e0-90f0-83df133b58cc name | admin surname | domain | internal username | admin groups | department | role | email | note | last_admin_check_status | t group_ids | external_id | fdfc627c-d875-11e0-90f0-83df133b58cc active | t _create_date | 2015-02-15 11:00:44.027534+02 _update_date | namespace | * engine_3_5=# select length(external_id) from users; -[ RECORD 1 ] length | 36 Re-adding the needinfo flag, did not want to remove it It's most probably related to the commits 2ef088137e27e2182323c8be4a90489d586f8dd1 and 04667f731e48a4781e902d7f1a5a53920810991e Still looking This one might also be involved 146eddc0c4c802a04073cd540f1c170cc08b9b25 I'm able to reproduce rebasing downstream master-rhev branch on top of latest upstream master branch. I have a slave ready for you to dig in if you want. I can confirm that this fixes the issue on our CI env Verified on 3.6.0-0.0.master.20150427173543.git61dec8c.el6 |