Aurélien HÉBERT

Results 42 comments of Aurélien HÉBERT

Should we really do that? This means that `env` vars are stored locally. What would be the win compared to using a config provider for example?

I get the aim, I think that a lot of env vars could be shared to an app with a Config Provider enabling already a 1 click order for most...

Thanks for your feedback on this, the more I think of if, the less I am convinced. I am afraid that this would enforce a sort of bad practice (having...

Same as @hsablonniere to start with `Coma separated value is fine by me` and to support an all keyword. For `regexp` if we only have 5 to 6 items, it...

When testing this PR, I got : ``` ./clever accesslogs -v [STACKTRACE] TypeError: Invalid host defined options at Object.accessLogs (/snapshot/clever-tools/src/commands/accesslogs.js:14:42) at Object.action (/snapshot/clever-tools/bin/clever.js:55:35) at Object.execute (/snapshot/clever-tools/node_modules/cliparse/src/cli.js:88:30) at Object.parse (/snapshot/clever-tools/node_modules/cliparse/src/cli.js:166:9) at...

Related to https://github.com/CleverCloud/clever-client.js/pull/88

I noticed the cron error, and this probably due to the default background job using `postgres` as default base name : https://github.com/FerretDB/documentdb/blob/e6a46daf10ecdda7d50057f7de3d122206a50bef/pg_documentdb/src/configs/background_job_configs.c#L46 How could I change it? As current `postgresql.conf`...

Indeed this seems to be this parameter: ```sql SHOW documentdb_bg_worker_database_name; documentdb_bg_worker_database_name ------------------------------------ postgres (1 row) ``` However editing it is failing with: ``` Jun 19 19:06:06 2f76bc1c-0d45-4ebb-ad82-2b4cd9307d96 postgres[50507]: 2025-06-19 19:06:06.201...

To debug this, I updated the database to use `postgres` and I still got the auth error on the find command 🤔 ``` postgres> db.createCollection("scientists2"); { ok: 1 } postgres>...

I would add that it only occurs on existing `collection`: ```sh postgres> db.scientists3.find(); postgres> db.createCollection("scientists3"); { ok: 1 } postgres> db.scientists3.find(); MongoServerError[InternalError]: fe_sendauth: no password supplied ```