lremes

Results 9 comments of lremes

> @lremes can you fix the tests? What do you want the changelog to say, as it is the only conflict and you need to edit it anyway?

This also happen also when creating a server with user_data defined. Volume is created and attached, but the mounting does not take place.

Tried the solution on ruby-alpine 2.4.1. The solution works on command line, but in rails the generated HTML diff results in "unchanged" for all lines. Text output seems to work...

It seems the error has something to do with invalid AMQ url. When I changed the PREFIX to "localhost:", things started working. So this works: ``` http://admin:admin@localhost:8161/api/jolokia/read/localhost:type=Broker,brokerName=localhost,service=Health ```

I tried removing the gem from Gemfile, but it did not work out-of-the-box. I get an error about missing attribute.

Just to note, this is what the old version with the gem generates: ``` SELECT COALESCE(c.task_attachment_count, 0) AS task_attachment_count, "tasks"."id" AS t0_r0, "tasks"."board_id" AS t0_r1, "tasks"."account_id" AS t0_r2, "tasks"."responsible_user_id" AS...

It seems that the unwanted behaviour is caused by the LEFT OUTER JOIN + select below. For some reason, in Rails 6.1.1 the select() below causes all other "Task" attributes...

I managed to fix the problem by monkey patching a select_append() method to ActiveRecord::QueryMethods as described here: https://stackoverflow.com/questions/41399788/use-rails-select-to-add-not-overwrite-selected-attributes This fixed the problem. So it seems that the gem may really...