Tomasz Kapłon

Results 5 issues of Tomasz Kapłon

When we set attr_readonly :parent_id and try to assign another parent to existing record, all indexes are recalculated to new parent but parent_id stays unchanged. So after save we have...

When I add a node property existence constraint to the database and try to create invalid node using the ActiveNode model, there is no error and new object is returned....

When we preload an association, methods like `.empty?` or `.size` still produce a query It cause an N+1 queries issues when we use this gem together with `fast_jsonapi` gem. See...

Helper for changing mock data to nil (not signed in) also could be usefull

enhancement

Boolean config params set using ENVs, like ``` SCOUT_CORE_AGENT_DOWNLOAD=false SCOUT_CORE_AGENT_LAUNCH=false ``` Doesn't work, because they are parsed as strings. So e.g. here https://github.com/scoutapp/scout_apm_elixir/blob/master/lib/scout_apm/core/agent_manager.ex#L53 There will be `"false"` string and `!!"false"`...