Calle Kabo

Results 34 comments of Calle Kabo

Could someone elaborate on why it has to be slow? I have keyvaluestore. My understanding is that it's just loading from the LocalStorage in my browser. That's normally very fast....

Ah, is that what watermark means? I was thinking of the type of watermark bills have, not high/low watermark. Cool, looking forward to v1 then :)

I can't get the workaround to work :/ ``` service: name: bob custom: stage: "${opt:stage, self:provider.stage}" package: individually: false artifact: ${opt:artifact, "./.serverless"}/${self:service.name}.zip provider: stage: test ``` ``` serverless package --package...

Until this gets fixed here's a temporary workaround you can add to your serverless.yml. ```yaml resources: Resources: MyStepfunctionStepFunctionsEventsRuleSchedule1: Properties: Targets: - Arn: Ref: MyStepfunction Id: MyStepfunctionStepFunctionsSchedule RoleArn: Fn::GetAtt: - MyStepfunctionScheduleToStepFunctionsRole...

I had the exact same issue. Worked around it by running `sudo systemctl disable usbguard` and rebooting, doing my thing, then `sudo systemctl enable usbguard`, rebooting again.

I'm also unable to get log in to work. Using FireFox. Using tab containers. First Party Isolation enabled. Blocking all third party cookies. So can't really say I'm surprised... 1....

I'm having the exact same issue as @Gerharddc :/

A workaround for this is to rename the default role to something shorter. ```yaml resources: Resources: IamRoleLambdaExecution: Properties: RoleName: "my-short-role-name" ``` The `RoleName` gets merged into the `IamRoleLambdaExecution` resource.