Matthieu Vachon

Results 154 comments of Matthieu Vachon

Requires slight tweaks to covers usage of `CLOUDSDK_ACTIVE_CONFIG_NAME`: ``` local gcp_profile="" if [[ -n "${CLOUDSDK_ACTIVE_CONFIG_NAME}" && -f "$HOME/.config/gcloud/configurations/config_$CLOUDSDK_ACTIVE_CONFIG_NAME" ]]; then gcp_profile="$CLOUDSDK_ACTIVE_CONFIG_NAME" elif [[ -f "$HOME/.config/gcloud/active_config" ]]; then gcp_profile=$(cat $HOME/.config/gcloud/active_config) fi...

@QingWeil-Li Was this close because it's now possible? Won’t fix?

Thanks @mike-d-davydov, seems to work out of the box now by installing: ``` yarn add --dev @types/jest-expect-message ``` Thanks for pushing it to DefinitelyTyped repo!

As a temporary measure, one can disable standard output logging on `logrus` directly: ``` logrus.StandardLogger().SetOutput(ioutil.Discard) ``` It's also possible to re-hook the logs to another library completely instead of "simply"...

I don't get the warning anymore when doing `ember test`. However, inside `Atom`, when using the `linter-eslint` plugin, the warning is still present (for the two `.eslintrc.js` and `tests/.eslintrc.js` files)....

@BrianSipple I was probably using the latest `linter-eslint` at time of writing because it was a fresh install at that time. But it might have been updated since then. Note...

Here the image in question: ![image](https://cloud.githubusercontent.com/assets/123014/15540483/97da720c-2255-11e6-8324-0ac7d0e8685e.png) Also, just did this steps and got the problem: ``` cd /tmp ember new simple-ignore-bug cd simple-ignore-bug ember install ember-cli-eslint atom . # Deleted...

@mj426382 Seeing the same behavior, the real problem is not why the call failed, it's that `useCall` does not report the error properly and as such, there is no way...

Ok after different tries, this problem is not consistent and seems to happen mostly after some navigation within the site and not directly after a hard page refresh.

While at it, https://github.com/pancakeswap/pancake-subgraph/blob/a84f47800d251148ff35513f711ce63bae75ec6c/src/exchange/core.ts#L430 also is duplicated with https://github.com/pancakeswap/pancake-subgraph/blob/a84f47800d251148ff35513f711ce63bae75ec6c/src/exchange/core.ts#L427