We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
job runner is not activated in case of using %d or %h in db_filter
def get_db_names(self): if openerp.tools.config['db_name']: db_names = openerp.tools.config['db_name'].split(',') else: db_names = openerp.service.db.exp_list() dbfilter = openerp.tools.config['dbfilter'] if dbfilter: db_names = [d for d in db_names if re.match(dbfilter, d)] _logger.info('************************ get_db_names %s', [openerp.tools.config['db_name'], openerp.service.db.exp_list(), dbfilter]) return db_names
log output:
2015-10-13 12:57:54,990 25521 INFO ? openerp.addons.connector.jobrunner.runner: ************************ get_db_names [False, [u'erp'], '^%d$']
The text was updated successfully, but these errors were encountered:
It's a duplicate of #58. If you don't mind I'll close this one. Do not hesistate to reopen if needed.
Sorry, something went wrong.
No branches or pull requests
job runner is not activated in case of using %d or %h in db_filter
log output:
The text was updated successfully, but these errors were encountered: