Glen Takahashi

Results 8 issues of Glen Takahashi

Right now if you experience an error with puppeteer or the code itself, the tests still pass. E.g.: (this specific issue of slashes in test names is fixed, but it...

When using helm v3 (doesn't happen with v2) with multiple resources defined per yaml, kots will continuously try to recreate and destroy resources in those yaml files. https://kubernetes.io/docs/concepts/cluster-administration/manage-deployment/#organizing-resource-configurations Example: For...

**Describe the solution you'd like** I'd like to be able to put authorization checks inside the subscription `topics` option so that I can dynamically block or allow users on subscriptions....

Enhancement :new:
Community :family_man_girl:
Blocked :no_entry_sign:

Confirm by changing [ ] to [x] below to ensure that it's a bug: - [x] I've gone through [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/welcome.html) and [API reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/) - [x] I've checked [AWS Forums](https://forums.aws.amazon.com)...

bug
workaround-available
p3

**Intended outcome:** `apollo client:codegen` should throw an error if two fragments are named the same, similar to how it already does this for mutations + queries. **Actual outcome:** The last...

given this code: ``` class Parent(db.Model): __tablename__ = "parent" id = db.Column(Integer, primary_key=True) children = db.relationship("Child", back_populates="parent") class Child(db.Model): __tablename__ = "child" id = db.Column(Integer, primary_key=True) parent_id = db.Column(Integer, ForeignKey("parent.id"),...

enhancement

Because execute_request can currently only take one cell at a time, when running multiple cells together with `stop_on_error`, it's possible that downstream cells still execute. The race condition that exists...

# Describe the bug When doing a `DELETE FROM table WHERE "someCol" in (select "someCol" from table limit X)`, the wrong number of rows are deleted. # To Reproduce ```sql...