App engine modules(services) registration issue?

Hi ,
Im playing around with app engine modules and GIN Framework you can see the code here
im using this command in order to start the app

goapp serve app.yaml bla/bla.yaml kaka/kaka.yaml

the weird thing that i dont understand is that according to the gin log the non default modules is registered twice .

[GIN-debug] [WARNING] Running in “debug” mode. Switch to “release” mode in production.

  • using env: export GIN_MODE=release
  • using code: gin.SetMode(gin.ReleaseMode)

[GIN-debug] GET /kaka → main28453.init.1.func1 (1 handlers)
[GIN-debug] [WARNING] Running in “debug” mode. Switch to “release” mode in production.

  • using env: export GIN_MODE=release
  • using code: gin.SetMode(gin.ReleaseMode)

[GIN-debug] GET /bla → main28453.init.1.func1 (1 handlers)
[GIN-debug] [WARNING] Running in “debug” mode. Switch to “release” mode in production.

  • using env: export GIN_MODE=release
  • using code: gin.SetMode(gin.ReleaseMode)

[GIN-debug] GET / → main28453.init.1.func1 (1 handlers)
[GIN-debug] [WARNING] Running in “debug” mode. Switch to “release” mode in production.

  • using env: export GIN_MODE=release
  • using code: gin.SetMode(gin.ReleaseMode)

[GIN-debug] GET /bla → bla.init.1.func1 (1 handlers)
[GIN-debug] [WARNING] Running in “debug” mode. Switch to “release” mode in production.

  • using env: export GIN_MODE=release
  • using code: gin.SetMode(gin.ReleaseMode)

[GIN-debug] GET /kaka → kaka.init.1.func1 (1 handlers)

Is that a GIN issue ?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.