Armel Larcier
Armel Larcier
I have two remotes and my MRs are created with the first (alphabetically) remote ! This made me sweat a few times. It should default to `origin` and show the...
## Description of the problem, including code/CLI snippet This is my config file : ``` [global] default = gitlab ssl_verify = true timeout = 5 [gitlab] url = https://gitlab.com private_token...
### Pull Request check-list _Please make sure to review and check all of these items:_ - [x] Does `npm run test` or `npm run test-DIALECT` pass with this change (including...
Hi! I managed to extend `ReferenceManyField` like this : ``` import ReferenceManyField from 'admin-config/lib/Field/ReferenceManyField'; class ReferenceManyCustomField extends ReferenceManyField { constructor(name) { super(name); this._type = 'reference_many_custom'; } } export default ReferenceManyCustomField;...
Use of `global.sequelize` and of `$lte` operator. I use this patch (with patch-package) ```patch diff --git a/node_modules/koa2-ratelimit/src/SequelizeStore.js b/node_modules/koa2-ratelimit/src/SequelizeStore.js index f5bceb4..ac3b23b 100644 --- a/node_modules/koa2-ratelimit/src/SequelizeStore.js +++ b/node_modules/koa2-ratelimit/src/SequelizeStore.js @@ -1,4 +1,5 @@ const...
Using ``` function graceful () { agenda.stop(function(){ process.exit(0); }); } process.on("SIGTERM", graceful); process.on("SIGINT" , graceful); ``` Locked jobs are unlocked BUT when server restarts agenda does not restart jobs that...
This change is [](https://reviewable.io/reviews/mongo-express/mongo-express/859) --- with checkbox opt-in closes #438 ref https://github.com/mongo-express/mongo-express/issues/81 
In order to get an import form displayed I have type the tag with the full, prefixed resource name. ``` sylius.importer.my_plugin.my_resource.xlsx: class: FriendsOfSylius\SyliusImportExportPlugin\Importer\ResourceImporter arguments: - "@app.factory.my_resource.spreadsheet_reader" - "@my_plugin.manager.my_resource" - "@app.processor.my_plugin.my_resource"...