1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Merge branch '6.2.x' into 6.3.x

Closes gh-15212
This commit is contained in:
Josh Cummings
2024-06-06 13:45:56 -06:00
@@ -179,8 +179,8 @@ Java::
[source=java,role="primary"]
----
@Bean
public HttpSessionEventListener sessionEventListener() {
return new HttpSessionEventListener();
public HttpSessionEventPublisher sessionEventPublisher() {
return new HttpSessionEventPublisher();
}
----
@@ -189,8 +189,8 @@ Kotlin::
[source=kotlin,role="secondary"]
----
@Bean
open fun sessionEventListener(): HttpSessionEventListener {
return HttpSessionEventListener()
open fun sessionEventPublisher(): HttpSessionEventPublisher {
return HttpSessionEventPublisher()
}
----
======