mirror of
https://github.com/kataras/iris.git
synced 2025-03-14 11:06:27 +01:00
examples: minor
Former-commit-id: 7e86dfbbc496bdd33faad744c8242468d95d3055
This commit is contained in:
parent
033fc76543
commit
466978f1fe
|
@ -1,6 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
|
@ -91,9 +92,9 @@ func main() {
|
|||
app.Get("/update", func(ctx iris.Context) {
|
||||
// updates resets the expiration based on the session's `Expires` field.
|
||||
if err := sess.ShiftExpiration(ctx); err != nil {
|
||||
if sessions.ErrNotFound.Equal(err) {
|
||||
if errors.Is(err, sessions.ErrNotFound) {
|
||||
ctx.StatusCode(iris.StatusNotFound)
|
||||
} else if sessions.ErrNotImplemented.Equal(err) {
|
||||
} else if errors.Is(err, sessions.ErrNotImplemented) {
|
||||
ctx.StatusCode(iris.StatusNotImplemented)
|
||||
} else {
|
||||
ctx.StatusCode(iris.StatusNotModified)
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"time"
|
||||
|
||||
"github.com/kataras/iris/v12"
|
||||
|
@ -127,9 +128,9 @@ func main() {
|
|||
app.Get("/update", func(ctx iris.Context) {
|
||||
// updates resets the expiration based on the session's `Expires` field.
|
||||
if err := sess.ShiftExpiration(ctx); err != nil {
|
||||
if sessions.ErrNotFound.Equal(err) {
|
||||
if errors.Is(err, sessions.ErrNotFound) {
|
||||
ctx.StatusCode(iris.StatusNotFound)
|
||||
} else if sessions.ErrNotImplemented.Equal(err) {
|
||||
} else if errors.Is(err, sessions.ErrNotImplemented) {
|
||||
ctx.StatusCode(iris.StatusNotImplemented)
|
||||
} else {
|
||||
ctx.StatusCode(iris.StatusNotModified)
|
||||
|
|
Loading…
Reference in New Issue
Block a user