KEYCLOAK-12473 Add possibility to specify length of event detail when storing to database
This commit is contained in:
parent
2297644ee4
commit
8be3ccf885
1 changed files with 14 additions and 0 deletions
|
@ -104,5 +104,19 @@ that comes with your distribution and adding for example:
|
||||||
</spi>
|
</spi>
|
||||||
----
|
----
|
||||||
|
|
||||||
|
You can also set up a maximum length of the Event detail stored in the database by editing `standalone.xml`, `standalone-ha.xml`, or
|
||||||
|
`domain.xml`. This setting can be useful in case some field (e.g. redirect_uri) is very long. Here is an example of defining the maximum length.:
|
||||||
|
|
||||||
|
[source,xml]
|
||||||
|
----
|
||||||
|
<spi name="eventsStore">
|
||||||
|
<provider name="jpa" enabled="true">
|
||||||
|
<properties>
|
||||||
|
<property name="max-detail-length" value="1000"/>
|
||||||
|
</properties>
|
||||||
|
</provider>
|
||||||
|
</spi>
|
||||||
|
----
|
||||||
|
|
||||||
See the link:{installguide_link}[{installguide_name}] for more details on
|
See the link:{installguide_link}[{installguide_name}] for more details on
|
||||||
where the `standalone.xml`, `standalone-ha.xml`, or `domain.xml` file lives.
|
where the `standalone.xml`, `standalone-ha.xml`, or `domain.xml` file lives.
|
||||||
|
|
Loading…
Reference in a new issue