-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove DefaultCookieDecoder (#10659)
#10435 remove DefaultCookieDecoder from services because its broken for parsing request cookies
- Loading branch information
Showing
9 changed files
with
44 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...ty/src/test/groovy/io/micronaut/http/netty/cookies/NettyLaxServerCookieDecoderSpec.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.micronaut.http.netty.cookies | ||
|
||
import io.micronaut.core.order.OrderUtil | ||
import io.micronaut.http.cookie.DefaultServerCookieDecoder | ||
import io.micronaut.http.cookie.ServerCookieDecoder | ||
import spock.lang.Specification | ||
|
||
class NettyLaxServerCookieDecoderSpec extends Specification { | ||
|
||
void "ServerCookieDecoder is NettyLaxServerCookieDecoder"() { | ||
expect: | ||
ServerCookieDecoder.INSTANCE instanceof NettyLaxServerCookieDecoder | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
http/src/main/resources/META-INF/services/io.micronaut.http.cookie.ClientCookieEncoder
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
http/src/main/resources/META-INF/services/io.micronaut.http.cookie.ServerCookieDecoder
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
http/src/main/resources/META-INF/services/io.micronaut.http.cookie.ServerCookieEncoder
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters