Skip to content

Commit

Permalink
chore: replace fastify.io links with fastify.dev (#212)
Browse files Browse the repository at this point in the history
* docs(readme): replace `fastify.io` links with `fastify.dev`

* docs(readme): remove `www.` from `fastify.dev` urls
  • Loading branch information
Fdawgs committed Jan 15, 2024
1 parent 62202bf commit 846f35b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 846f35b

Please sign in to comment.