We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There should be no error messages regarding truncating messages
Task eventStream failed: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'full_message' at row 1, query was: INSERT INTO vm_event_history (vcenter_uuid, ts_event_ms, event_type, event_key, event_chain_id, full_message, is_template, user_name, datacenter_uuid, datastore_uuid, host_uuid, vm_uuid, compute_resource_uuid, config_spec, config_changes) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
The daemon outputs a lot of errors regarding insert full_message into vm_event_history failed
Change the the type of full_message in table vm_event_history from 'text' to 'longtext' solves the problem.
The text was updated successfully, but these errors were encountered:
1d7bcb8
Thanks for reporting this!
Sorry, something went wrong.
Thomas-Gelf
No branches or pull requests
Expected Behavior
There should be no error messages regarding truncating messages
Current Behavior
The daemon outputs a lot of errors regarding insert full_message into vm_event_history failed
Possible Solution
Change the the type of full_message in table vm_event_history from 'text' to 'longtext' solves the problem.
Your Environment
The text was updated successfully, but these errors were encountered: