You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by "Michael Jumper (JIRA)" <ji...@apache.org> on 2017/01/15 23:41:26 UTC

[jira] [Resolved] (GUACAMOLE-159) MySQL version of PasswordRecordMapper.xml is invalid

     [ https://issues.apache.org/jira/browse/GUACAMOLE-159?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Michael Jumper resolved GUACAMOLE-159.
--------------------------------------
    Resolution: Fixed

> MySQL version of PasswordRecordMapper.xml is invalid
> ----------------------------------------------------
>
>                 Key: GUACAMOLE-159
>                 URL: https://issues.apache.org/jira/browse/GUACAMOLE-159
>             Project: Guacamole
>          Issue Type: Bug
>          Components: guacamole-auth-jdbc-mysql
>    Affects Versions: 0.9.11-incubating
>            Reporter: Mathias
>            Assignee: Michael Jumper
>            Priority: Blocker
>             Fix For: 0.9.11-incubating
>
>         Attachments: docker-guacamole.log
>
>
> The {{PasswordRecordMapper.xml}} of guacamole-auth-jdbc-mysql is invalid, containing a {{<}} character which is not meant for interpretation as XML:
> {code:none}
> ...
> DELETE FROM guacamole_user_password_history
> WHERE password_history_id <= (
>     SELECT password_history_id
>     ...
> {code}
> should instead be:
> {code:none}
> ...
> DELETE FROM guacamole_user_password_history
> WHERE password_history_id &lt;= (
>     SELECT password_history_id
>     ...
> {code}
> All other XML files for both the MySQL and PostgreSQL auth validate.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)