fogfish
fogfish
``` The API @aws-cdk/core.Tag.add(scope,k,v) is deprecated: Use "Tags.of(scope).add(k,v)" instead. This API will be removed in the next major release ```
Fail with error `Missing required key 'retentionInDays' in params` ```ts new c3.logs.LogGroup(stack, 'MyLogs', { kmsKey, logGroupName: 'MyLogs', removalPolicy, }) ``` Ok: ```ts new c3.logs.LogGroup(stack, 'MyLogs', { kmsKey, logGroupName: 'MyLogs', removalPolicy,...
Removal of custom `c3.LogGroup` resources fails if log group is removed manually (outside of CF process). Error message in logs ``` { "Status": "FAILED", ... "Data": { "reason": { "message":...
Labeller fails on pull requests from forks. See the fix https://github.com/actions/labeler#permissions
``` ./ v1.16.11 β v1.30.3 github.com/aws/aws-sdk-go-v2 v1.17.1 β v1.27.27 github.com/aws/aws-sdk-go-v2/config v1.54.0 β v1.173.0 github.com/aws/aws-sdk-go-v2/service/ec2 v1.14.14 β v1.27.5 github.com/aws/aws-sdk-go-v2/service/pi v1.24.0 β v1.82.0 github.com/aws/aws-sdk-go-v2/service/rds v0.6.6 β v0.7.1 github.com/montanaflynn/stats v3.13.1 β v3.14.6 github.com/schollz/progressbar/v3...
The following program runs with Out of Memory due to forgotten `return` statement after "ctrl" channel is closed. Would there be any possibility for capturing the cases through code analysis?...
The action assumes the location of C++ source code at the root folder. It is not always the case especially if someone mixes Go and C++ code (e.g. using CGO,...
`fork.Map` assumes that inner function support concurrency. However, one of the `fork` api purpose is conversion of unsafe code into thread safe. Let's image we have pool of workers. How...