Eric Davies

Results 62 issues of Eric Davies

The fear I have with deleting by creation time is that I have old resources that are still being used. This is meaningful for things like CloudWatch Log Groups and...

Relevant functionality of GitGutter shown here: https://github.com/jisaacks/GitGutter#diff-popup With TabNine disabled, it works fine. With TabNine enabled, the +/-/▪ by the lines on the left still display, but I can't get...

It would be nice if there were some good instructions on how to handle CI testing of packages that depend on Cxx.jl, particularly on Travis macOS. I tried a simple...

Something is segfaulting when the gc runs and things are destroyed in `Cxx.destruct`. I'm not sure what, and it may be my fault, so I reduced to a small test...

*cfn-lint version: 0.58.2* I believe that `!Sub` parameters should be checked to see if they depend on conditional resources the same way W1001 checks this for `!Ref` (e.g. `SubCondParam.Value` should...

enhancement

LibPQ.jl contains this code: ```julia type_lookup = LayerDict( PQTypeMap(type_map), jl_conn.type_map, LIBPQ_TYPE_MAP, _DEFAULT_TYPE_MAP ) func_lookup = LayerDict( PQConversions(conversions), jl_conn.func_map, LIBPQ_CONVERSIONS, _DEFAULT_CONVERSIONS, _FALLBACK_CONVERSION, ) ``` Both of these generate "Possible method call...

bug

Specifically, I think [this line](https://github.com/invenia/LibPQ.jl/blob/900621e13e870831ccb8927cb8d1b04f86fcb34a/deps/error_codes.jl#L73) should be changed to remove the space between type parameters. That was the only difference I saw reported by the format check.

Fix #211 @c42f Is this a good enough error or do I need something better here? I wanted to use `BoundsError` but it's quite limited for display.

Allowing functions to use `Connection`s which may be broken or closed is dangerous. For now I'll just add a function call to every function that calls `libpq_c` functions on `Ptr{PGconn}`...