Francisco Guimarães (chico)
Francisco Guimarães (chico)
- pREST version (or commit ref): 5c263a7 - pREST endpoint: - - PostgreSQL version: 9.6 - Operating system: Linux - Go version: 1.9.1 - Log gist: - ## Description I...
Take a look on the method TestExampleWithMoreThanOneTag at json-to-struct_test.go file to more information
Giving the following serverless configuration ```yml function1: handler: file1.handler environmentSecrets: ENV1: '/my-project/${opt:stage}/ENV1' function2: handler: file2.handler environmentSecrets: ENV2: '/my-project/${opt:stage}/ENV2' ``` When invoking `function1` the environment is injected with `ENV2` variable instead...
Fixes #22
Is there any plan to use `cpu_load_hottest_node` as a metric for autoscaling? I'm asking because I see some cases where the `cpu_load` is ok (but `cpu_load_hottest_node` is high), bigtable-autoscaler scales...
There some situations where one may wants to process a closed pull request. Here is some real use case: At our company when developing [serverless](https://github.com/serverless/serverless) projects we create a serverless...
Closes #83 The example below process [semver](http://semver.org/) tags. ```js { build: false, branches: { master: false, '/v[0-9]+(\.[0-9]+)*/': true } } ```
Is it possible to build semver tags (more specific I'm interested in github releases) by using regex in `branches`? Something like this: ```js { build: false, branches: { '/v[0-9]+(\.[0-9]+)*/': true...
Can we export the `defaultLogFormatter` below (`DefaultLogFormatter`)? https://github.com/gin-gonic/gin/blob/bb1fc2e0fe97c63dab1527baab88d01183853b8f/logger.go#L132-L132 In doing so it would be very easy to configure any of the `gin.LogFormatterParams`, eg: ```go return gin.LoggerWithConfig(gin.LoggerConfig{ Formatter: func(param gin.LogFormatterParams) string...