Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/mistral/conf/mistral.conf
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@
# configuration. If not set, we fall back to the rpc_backend option
# and driver specific configuration. (string value)
#transport_url = <None>
transport_url = rabbit://guest:guest@localhost:5672

# The messaging driver to use, defaults to rabbit. Other drivers
# include qpid and zmq. (string value)
Expand Down Expand Up @@ -233,6 +234,7 @@
# Deprecated group/name - [DATABASE]/sql_connection
# Deprecated group/name - [sql]/connection
#connection = <None>
connection = postgresql://mistral:StackStorm@localhost/mistral

# The SQLAlchemy connection string to use to connect to the slave
# database. (string value)
Expand Down Expand Up @@ -261,6 +263,7 @@
# Deprecated group/name - [DEFAULT]/sql_max_pool_size
# Deprecated group/name - [DATABASE]/sql_max_pool_size
#max_pool_size = <None>
max_pool_size = 50

# Maximum number of database connection retries during startup. Set to
# -1 to specify an infinite retry count. (integer value)
Expand Down Expand Up @@ -840,3 +843,4 @@

# Enables user authentication in pecan. (boolean value)
#auth_enable = true
auth_enable = false
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Guys, keep in mind: I have no idea what I'm doing, since it's mistral.
For example we use it for testing, but how bad could be this setting for default installation?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, found it's used for OpenStack only:
https://pypi.python.org/pypi/mistral#configuring-mistral

Merging.