diff --git a/devstack/settings b/devstack/settings index b991fa35..0b2cc2d9 100644 --- a/devstack/settings +++ b/devstack/settings @@ -21,7 +21,7 @@ QINLING_CONF_DIR=${QINLING_CONF_DIR:-/etc/qinling} QINLING_CONF_FILE=${QINLING_CONF_DIR}/qinling.conf QINLING_POLICY_FILE=${QINLING_CONF_DIR}/policy.json QINLING_AUTH_CACHE_DIR=${QINLING_AUTH_CACHE_DIR:-/var/cache/qinling} -QINLING_FUNCTION_STORAGE_DIR=${QINLING_FUNCTION_STORAGE_DIR:-/opt/qinling/funtion/packages} +QINLING_FUNCTION_STORAGE_DIR=${QINLING_FUNCTION_STORAGE_DIR:-/opt/qinling/function/packages} QINLING_PYTHON_RUNTIME_IMAGE=${QINLING_PYTHON_RUNTIME_IMAGE:-openstackqinling/python-runtime:0.0.3} QINLING_NODEJS_RUNTIME_IMAGE=${QINLING_NODEJS_RUNTIME_IMAGE:-openstackqinling/nodejs-runtime:0.0.1} QINLING_SIDECAR_IMAGE=${QINLING_SIDECAR_IMAGE:-openstackqinling/sidecar:0.0.1} diff --git a/doc/source/specs/function_aliases.rst b/doc/source/specs/function_aliases.rst index 8453191d..b62e1048 100644 --- a/doc/source/specs/function_aliases.rst +++ b/doc/source/specs/function_aliases.rst @@ -10,7 +10,7 @@ Support Qinling function aliases https://storyboard.openstack.org/#!/story/2001588 -Function aliases are like pointers to the specific funtion versions. By using +Function aliases are like pointers to the specific function versions. By using aliases, you can access the specific version of a function an alias is pointing to (for example, to invoke the function) without having to know the specific version the alias is pointing to. Function aliases enable the following use diff --git a/tools/vagrant/Vagrantfile b/tools/vagrant/Vagrantfile index 2bf3ce24..f522b967 100644 --- a/tools/vagrant/Vagrantfile +++ b/tools/vagrant/Vagrantfile @@ -64,8 +64,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Initialize Qinling configuration. sudo mkdir -p /vagrant/etc/qinling sudo mkdir -p /vagrant/log - sudo mkdir -p /opt/qinling/funtion - sudo chown ubuntu:ubuntu /opt/qinling/funtion + sudo mkdir -p /opt/qinling/function + sudo chown ubuntu:ubuntu /opt/qinling/function cp /vagrant/qinling.conf.sample /vagrant/etc/qinling/qinling.conf # Qinling db migration. @@ -75,4 +75,4 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| qinling-server --server api,engine --config-file /vagrant/etc/qinling/qinling.conf & SHELL -end \ No newline at end of file +end