Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fastify.post('/logout', (request, reply) => {
})
```

If you enable [`debug` level logging](https://www.fastify.io/docs/latest/Reference/Logging/),
If you enable [`debug` level logging](https://fastify.dev/docs/latest/Reference/Logging/),
you will see what steps the library is doing and understand why a session you
expect to be there is not present. For extra details, you can also enable `trace`
level logging.
Expand Down
4 changes: 2 additions & 2 deletions test/multi.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tap.test('it should handle multiple sessions properly', t => {
cookie: {
path: '/',
maxAge: 60,
domain: 'fastify.io'
domain: 'fastify.dev'
},
sessionName: 'shortTermSession'
}])
Expand Down Expand Up @@ -68,7 +68,7 @@ tap.test('it should handle multiple sessions properly', t => {

t.equal(response.cookies[1].name, 'short-term-cookie')
t.equal(response.cookies[1].maxAge, 60)
t.equal(response.cookies[1].domain, 'fastify.io')
t.equal(response.cookies[1].domain, 'fastify.dev')

fastify.inject({
method: 'GET',
Expand Down