Mike Dalrymple

Results 29 comments of Mike Dalrymple

This sounds similar to an issue I was having: `Can't resolve all parameters for Component: (?).` I resolved it by adding the following to `tsconfig.spec.json`: ` "emitDecoratorMetadata": true,` This [commit...

Thanks for the update, relates to #1348

I think this might be related to #152 . Should this failure make that issue a bug instead of a feature request? Basically the developer has no idea why calling...

Hi @bhautikpip > I think you are receiving this panic because you might have started xray tracing on S3 session and it tries to capture presign call (because presign call...

Defaulting `AWS_XRAY_CONTENT_MISSING` to `LOG_ERROR` is the opposite of the default in the Java SDK. I'm not sure how much consistency developers expect between SDKs. Here's the documentation on the Java...

@bhautikpip setting `SOURCE_URL` in that sample project I created to the following does not cause the panic: https://blog.mikedalrymple.com/featured/gg-bridge-fog.jpg

That sounds right, and I can confirm that these operations succeed when I use the latest code in master (i.e. with the `LOG_ERROR` set as the default).

I don't think this should be allowed to be closed until there's a fix for it. It seems problematic to have x-ray code that will fail depending on the size...

Using the `mock()` mechanism introduced in 2.4.0 for #117 , I no longer have this issue. I had previously been mocking a concrete implementation of my Abstract class but now...

According to this [MS Typescript issue #7588](https://github.com/Microsoft/TypeScript/issues/7588) \(If I follow it correctly\) reject should support `any` type and it looks like it's only typed to `Error` in the `MethodStubSetter` (i.e....