Jeroen van Baarsen
Jeroen van Baarsen
@michiels Ok thanks!
@michiels Its the pool size in `database.yml`. Its the amount connections that can happen to the database. For a project we are working on right now we need to have...
@michiels I don't think it can harm people when the number is a bit higher. I'm supported of using sane defaults, and lower the configuation hell.
@michiels Another solution would be make it an ENV var, and set it to 50 by default like so: ``` yaml production: pool: ``` Yes, sidekiq defaults to 25, I'm...
@acandael Did you run `export DIGITALOCEAN_ACCESS_TOKEN=abcdefg` before running the `curl` command?
@acandael The command needs to be: `curl -X GET https://api.digitalocean.com/v2/account/keys -H "Authorization: Bearer "` You have replaced `Bearer` with `test` But it needs to be `Bearer`
@acandael Did this answer your question?
@acandael Ah ok. So your command looks like: `$ curl -X GET https://api.digitalocean.com/v2/account/keys -H "Authorization: Bearer $DIGITAL_OCEAN_ACCESS_TOKEN"`? What happens if you don't use the exported var, but just entered the...
@berkes Maybe interesting to look at https://github.com/intercity/chef-repo/blob/master/vendor/cookbooks/backups/recipes/default.rb#L83 since I already implemented a cron cookbook for the backup feature.
For your concerns: **Is this feature needed?** I believe this would make a great addition! **Do we need a cleaner or more predictable outcome for the command?** Can you explain...