diff --git a/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po b/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po index a318ce80..386f84dc 100644 --- a/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po +++ b/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po @@ -1,15 +1,16 @@ # Andi Chandler , 2016. #zanata # Andi Chandler , 2017. #zanata # Andi Chandler , 2018. #zanata +# Andi Chandler , 2019. #zanata msgid "" msgstr "" "Project-Id-Version: oslo.cache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-08-27 12:02+0000\n" +"POT-Creation-Date: 2019-11-06 04:11+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2018-09-16 09:02+0000\n" +"PO-Revision-Date: 2019-11-14 11:24+0000\n" "Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom)\n" "Language: en_GB\n" @@ -22,9 +23,30 @@ msgstr "1.22.0" msgid "1.30.0" msgstr "1.30.0" +msgid "1.30.2" +msgstr "1.30.2" + +msgid "1.30.4" +msgstr "1.30.4" + +msgid "1.31.1" +msgstr "1.31.1" + +msgid "1.33.3" +msgstr "1.33.3" + +msgid "1.34.0" +msgstr "1.34.0" + +msgid "1.37.0" +msgstr "1.37.0" + msgid "1.9.0" msgstr "1.9.0" +msgid "@param flush_on_reconnect: optional flag which prevents a" +msgstr "@param flush_on_reconnect: optional flag which prevents a" + msgid "" "Added a new etcd3gw driver that uses the etcd 3.x grpc-gateway HTTP \"/" "v3alpha\" API to cache key/value pairs." @@ -32,6 +54,9 @@ msgstr "" "Added a new etcd3gw driver that uses the etcd 3.x grpc-gateway HTTP \"/" "v3alpha\" API to cache key/value pairs." +msgid "Bug Fixes" +msgstr "Bug Fixes" + msgid "New Features" msgstr "New Features" @@ -53,12 +78,75 @@ msgstr "Queens Series Release Notes" msgid "Rocky Series Release Notes" msgstr "Rocky Series Release Notes" +msgid "See the help from python-memcached:" +msgstr "See the help from python-memcached:" + +msgid "Stein Series Release Notes" +msgstr "Stein Series Release Notes" + msgid "Switch to reno for managing release notes." msgstr "Switch to reno for managing release notes." +msgid "" +"The default value for ``memcache_socket_timeout`` has been lowered from 3 " +"seconds to 1 second. The positive side-effect of this can be found in " +"downstream `changes `_. If you deployment relies explicitly on a timeout of 3 seconds, " +"please set that override in your configuration." +msgstr "" +"The default value for ``memcache_socket_timeout`` has been lowered from 3 " +"seconds to 1 second. The positive side-effect of this can be found in " +"downstream `changes `_. If you deployment relies explicitly on a timeout of 3 seconds, " +"please set that override in your configuration." + +msgid "Train Series Release Notes" +msgstr "Train Series Release Notes" + msgid "Unreleased Release Notes" msgstr "Unreleased Release Notes" +msgid "Upgrade Notes" +msgstr "Upgrade Notes" + +msgid "" +"[`bug 1743036 `_] The " +"`backend_argument` value(s) for `url` when configuring memcache did not " +"properly handle multiple servers. This is because the URL was passed as a " +"string (comma delimited) instead of a list to the memcache library/client. " +"The `url` argument is now special cased and will split the string on a comma " +"so that it mirrors the behavior of the ListOpt used by `memcache_servers` " +"option." +msgstr "" +"[`bug 1743036 `_] The " +"`backend_argument` value(s) for `url` when configuring memcache did not " +"properly handle multiple servers. This is because the URL was passed as a " +"string (comma delimited) instead of a list to the memcache library/client. " +"The `url` argument is now special cased and will split the string on a comma " +"so that it mirrors the behaviour of the ListOpt used by `memcache_servers` " +"option." + +msgid "" +"[`bug 1819957 `_] If a " +"memcache server disappears and then reconnects when multiple memcache " +"servers are used (specific to the python-memcached based backends) it is " +"possible that the server will contain stale data. The default is now to " +"supply the ``flush_on_reconnect`` optional argument to the backend. This " +"means that when the service connects to a memcache server, it will flush all " +"cached data in the server. This change only impacts the pooled backend as it " +"is the most likely (with heavy use of greenlet) to be impacted by the " +"problem and is the recommended production configuration." +msgstr "" +"[`bug 1819957 `_] If a " +"memcache server disappears and then reconnects when multiple memcache " +"servers are used (specific to the python-memcached based backends) it is " +"possible that the server will contain stale data. The default is now to " +"supply the ``flush_on_reconnect`` optional argument to the backend. This " +"means that when the service connects to a memcache server, it will flush all " +"cached data in the server. This change only impacts the pooled backend as it " +"is the most likely (with heavy use of greenlet) to be impacted by the " +"problem and is the recommended production configuration." + msgid "" "`memcache_socket_timeout` is changed to float, given the same default value " "'3.0'." @@ -68,3 +156,18 @@ msgstr "" msgid "oslo.cache Release Notes" msgstr "oslo.cache Release Notes" + +msgid "" +"scenario that can cause stale data to be read: If there's more than one " +"memcached server and the connection to one is interrupted, keys that mapped " +"to that server will get reassigned to another. If the first server comes " +"back, those keys will map to it again. If it still has its data, get()s can " +"read stale data that was overwritten on another server. This flag is off by " +"default for backwards compatibility." +msgstr "" +"scenario that can cause stale data to be read: If there's more than one " +"memcached server and the connection to one is interrupted, keys that mapped " +"to that server will get reassigned to another. If the first server comes " +"back, those keys will map to it again. If it still has its data, get()s can " +"read stale data that was overwritten on another server. This flag is off by " +"default for backwards compatibility."