Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bclozel/gh-25113
https://github.com/bclozel/gh-25113
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/bclozel/gh-25113
- Owner: bclozel
- Created: 2021-02-05T13:13:55.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-12T20:32:26.000Z (almost 4 years ago)
- Last Synced: 2024-05-10T22:08:02.118Z (6 months ago)
- Language: Java
- Size: 54.7 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Repro project for gh-25113
To reproduce the issue, run the application and then get the main page using httpie.
The content hash for the CSS stylesheet is missing in the URL:
```shell
➜ gh-25113 git:(master) ✗ http :8080
HTTP/1.1 200
Connection: keep-alive
Content-Language: en-FR
Content-Length: 164
Content-Type: text/html;charset=UTF-8
Date: Fri, 12 Feb 2021 20:27:59 GMT
Keep-Alive: timeout=60
Set-Cookie: JSESSIONID=F3BA1DB190D6DC24F3796EA8203FF023; Path=/; HttpOnly
TEST
```
Reverting to 2.3.7.RELEASE gives the expected:
```shell
➜ gh-25113 git:(master) ✗ http :8080
HTTP/1.1 200
Connection: keep-alive
Content-Language: en-FR
Content-Length: 197
Content-Type: text/html;charset=UTF-8
Date: Fri, 12 Feb 2021 20:30:00 GMT
Keep-Alive: timeout=60
Set-Cookie: JSESSIONID=995C5842A789798E1D9331C1556D8E5B; Path=/; HttpOnly
TEST
```