Ryan Pham

Results 20 comments of Ryan Pham

I have to do the same thing when I try to integrate Swagger-ui into the project.

I got this error when using Create ``` pq: syntax error at or near "(" ``` This happens with all of Models. Sample code: ``` db, err := sql.Open("postgres", "postgres://postgres:12341234@localhost:5435/data_test?sslmode=disable")...

Same problem here: ``` sidekiq (6.4.1) sidekiq-unique-jobs (7.1.7) ``` I'm also unable to find the digest in the locked list `SidekiqUniqueJobs::Digests.new.entries ` Here is where it check job_id by digest:...

My current solutions: ``` SidekiqUniqueJobs.reflect do |on| on.lock_failed do |job_hash| # There is a problem where job is executed and digest has been remove from SidekiqUniqueJobs::Digests.new.entries BUT the job_id still...

Me too. I got a problem with this. I found that the gateway always listens on the server IP address request but not the localhost request. I think that we...

I found the solution, config the `hostname` to `0.0.0.0` ``` "http": { "hostname": "0.0.0.0", "port": 1234 }, ```

@ChielHackman @ChielHackman You can use `maximum_attempts` to check resource maximum attempts.

The `master branch`'s code was changed from the time I submitted this pull request. So anyone who wants to fix this problem should consider the solution instead of using it.