Lolobosse (old JN)
Lolobosse (old JN)
I got the same issue as @zaur and I solved it by proxying the Cursor in an array. This is a decent solution but it doesn't really answer the question......
@vishalshah133 So no, it doesn't work 😆
I can confirm the issue, `call_stack_inspection_limit` doesn't change anything because the function `_should_use_real_time` is not called: Botocore calls `utcnow` directly which doesn't call `_should_use_real_time`: ``` @classmethod def utcnow(cls): result =...
So for the people you might run into the issue: It works if you change the `utcnow` method as follows: ``` @classmethod def utcnow(cls): if _should_use_real_time(): result = real_datetime.utcnow() else:...
Hi @alexitx, Thanks a lot for the exhaustive feedback, you're right, we would need a rewrite and a simplification. I'll get on it as soon as I get time, I...
Needs to be released though...
Btw, quickfix for now: Replace the original dependency in your `package.json` by: ``` "react-native-check-box": "git://github.com/crazycodeboy/react-native-check-box.git#dbd40836b09f7bc0316d13e30abdb66a799c5077" ```
+1 But related to #15
Btw, quickfix for now: Replace the original dependency in your `package.json` by: ``` "react-native-check-box": "git://github.com/crazycodeboy/react-native-check-box.git#dbd40836b09f7bc0316d13e30abdb66a799c5077" ```