Yoshiyuki Kinjo
Yoshiyuki Kinjo
``` javascript function badExample() { var badName; /** * Lorem ipsum * @param {Object} event hoge hoge */ badName.myMethod = function (event) { }; } ``` Feeding this file to...
Even if `typed` is considered as magic comment, this form is invalid as magic comment https://github.com/sorbet/sorbet/issues/952 https://github.com/ctran/annotate_models/blob/786394947c041f781df2ee0ea003e09452fa9dba/lib/annotate/annotate_models.rb#L42
Raw HTTP response for Case 2 ``` { "message": "A message (messages[0]) in the request body is invalid", "details": [ { "message": "invalid datetime format for the specified mode", "property":...
I have same problem and git is indeed aware of conflict. ``` git status On branch feature/xxxxxx Your branch is ahead of 'origin/feature/xxxxxx' by 2 commits. (use "git push" to...
I also ran into same issue. If *all* of the relevant models use uuid as an id, changing type of `impressions.impressionable_id` and `impressions.user_id` to `uuid` works for me. Above link...
We are experiencing same problem with Rails 5.1.4 and Ruby 2.6.6. So bootsnap should be irrelevant. It works fine on Rails 5.1.4 and Ruby 2.5.9.
```ruby module ApolloUploadServer class GraphQLDataBuilder def assign_file(field, splited_path, file) if field.is_a? Hash field.merge!(splited_path.last => file) elsif field.is_a? Array field[splited_path.last.to_i] = file end end end remove_const :Upload Upload = GraphQL::ScalarType.define do...
Due to rails/rails#44594, `belongs_to` with `class_name` option must also have `foreign_key` option.
``` someFunc: Type: AWS::Serverless::Function Properties: Handler: dist/handlers/someFunc.index Events: Api: Type: Api Properties: Path: /foo/bar/{id} Method: POST Auth: Authorizer: AWS_IAM ResourcePolicy: # https://github.com/aws/serverless-application-model/issues/1708 AwsAccountWhitelist: - arn:aws:iam::111122223333:root ``` deploying this raises ```...
https://github.com/aws/aws-sam-cli/blob/bfbcc166709dba330310088e5a5e520da1ef2444/samcli/lib/package/s3_uploader.py#L87-L89 This `file_exists` check take few seconds for each lambda and slows down build if deployed deduped lambda > ~10. Since we know build artifact is identical, I thought even...