bb6dd45ec4
* Asynchronous tasks * Separate stateless task executors * Notification of task executors via RabbitMQ TODO: * DB transaction management * Analyzing graph of tasks to identify what should be started * Thorough automated tests Partially implements blueprint: mistral-poc Partially implements blueprint: mistral-workflow-execution Partially implements blueprint: mistral-engine-ha Change-Id: I022e1b73b9a3c58f1fbc259ba3e5995acd2bf6c3
33 lines
576 B
Plaintext
33 lines
576 B
Plaintext
[loggers]
|
|
keys=root
|
|
|
|
[handlers]
|
|
keys=consoleHandler, fileHandler
|
|
|
|
[formatters]
|
|
keys=verboseFormatter, simpleFormatter
|
|
|
|
[logger_root]
|
|
level=DEBUG
|
|
handlers=consoleHandler, fileHandler
|
|
|
|
[handler_consoleHandler]
|
|
class=StreamHandler
|
|
level=INFO
|
|
formatter=simpleFormatter
|
|
args=(sys.stdout,)
|
|
|
|
[handler_fileHandler]
|
|
class=FileHandler
|
|
level=INFO
|
|
formatter=verboseFormatter
|
|
args=("/tmp/mistral.log",)
|
|
|
|
[formatter_verboseFormatter]
|
|
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
|
|
datefmt=
|
|
|
|
[formatter_simpleFormatter]
|
|
format=%(asctime)s - %(levelname)s - %(message)s
|
|
datefmt=
|