Skip to content

Commit

Permalink
functions: Add missing quotes to memcache config
Browse files Browse the repository at this point in the history
  • Loading branch information
jcormier committed Apr 11, 2024
1 parent 02bf47b commit 9d267d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/runtime/functions
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ redmine_configure_memcached() {
echo "config.gem 'dalli'"
echo "config.action_controller.perform_caching = true"
echo "config.cache_classes = true"
echo "config.cache_store = :mem_cache_store, ${MEMCACHE_HOST}:${MEMCACHE_PORT}"
echo "config.cache_store = :mem_cache_store, \"${MEMCACHE_HOST}:${MEMCACHE_PORT}\""
} >> "${REDMINE_ADDITIONAL_CONFIG}"
fi
}
Expand Down

0 comments on commit 9d267d2

Please sign in to comment.