function views_send_update_8101 in Views Send 8
Add retry to the default configuration.
File
- ./
views_send.install, line 106 - The install and update code for the Views Send module.
Code
function views_send_update_8101() {
$config = \Drupal::configFactory()
->getEditable('views_send.settings');
$config
->set('retry', 5);
$config
->save(TRUE);
}