Shawn

Results 40 comments of Shawn

Because of the time it takes to deploy a CloudFront distribution and the version requirement, it usually makes sense to do a lot of testing via API Gateway first and...

I'm having this issue and posted about it here with everything I know about the issue right now: https://www.reddit.com/r/GalliumOS/comments/8p2kc7/boot_issues_with_galliumos/ Any assistance would be appreciated.

I have no idea but maybe try to move @0x95c41c96183b9c2f; after the import in parent?

Does this mean that the solution may be to try omitting this line: from schemas.child_capnp import Child And seeing if the import creates the Child object properly anyway? Is it...

Some futzing resulted in this working, although not likely what you want: ``` @0x95c41c96183b9c2f; # using import "/schemas/child.capnp".Child; struct Parent { child @0 :List(Child); } struct Child { name @0...

Threw a few debugging statements into the capnp.pyx: ``` diff --git a/capnp/lib/capnp.pyx b/capnp/lib/capnp.pyx index dd0f9b8..e89a9d7 100644 --- a/capnp/lib/capnp.pyx +++ b/capnp/lib/capnp.pyx @@ -3463,11 +3463,13 @@ cdef class SchemaParser: ret = _ParsedSchema()...

Changing this: `using import "/schemas/child.capnp".Child;` to this: `using import "child.capnp".Child;` eliminates the problem. However, if you wanted to have a folder structure for your schemas, the problem returns.

I think the configuration is valid, I did not move the configuration source. What you are looking at is ALWAYS in docker. When you see the `Failed` line and the...

Dupe of https://github.com/hashicorp/terraform-provider-aws/issues/23992 additional workarounds available there.

This error is here: https://github.com/tenable/terrascan/blob/master/pkg/iac-providers/terraform/commons/load-dir.go#L135 It also appears here (non-recursive): https://github.com/tenable/terrascan/blob/master/pkg/iac-providers/terraform/commons/load-dir.go#L261 The non-recursive version probably needs this error, otherwise it doesn't make sense - to scan a folder non-recursively and...