R. Tyler Croy

Results 143 comments of R. Tyler Croy

``` riverbank=# EXPLAIN SELECT schemas.*, shares.name as share_name FROM schemas, shares WHERE share_id = shares.id AND shares.name = 'rtyler'; QUERY PLAN -------------------------------------------------------------------- Hash Join (cost=22.19..42.42 rows=4 width=104) Hash Cond: (schemas.share_id...

Oops, I misunderstood, here ya goes ``` riverbank=# EXPLAIN (VERBOSE, FORMAT JSON) SELECT schemas.*, shares.name as share_name FROM schemas, shares WHERE share_id = shares.id AND shares.name = 'rtyler'; QUERY PLAN...

I have not seen any issues with publishing pages via confluence-publisher and the new editor. Are you seeing errors?

@znerd I see, thanks for clarifying. I also see this behavior, but in our case we're never making _any_ edits via Confluence for pages owned by confluence-publisher. (The new editor...

In our world we're using confluence-publisher from a Docker image (attached to GitHub Actions) and aren't actually building any custom code. @zeldigas do you happen to know if there are...

@patcon well, this requires no server-side component, so that's a pretty big difference :smile:

I believe the problem is relatively easily solved with a `Bundler.require` in the `config.ru`. E.g. ``` ruby require 'rubygems' require 'bundler' Bundler.require require 'my-git-based-gem' map "/" do run Stuff end...

I'm assuming this means configuring the formatter that allows plain text versus HTML in the job descriptions and things like that?

@v1v for the record, I use the `feedback-needed` label when I need feedback from the original submitter of an issue. This got overlooked because I assumed it was waiting for...