This is an automated email from the ASF dual-hosted git repository.
gancho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 13804cc Fix version and virtualhost config cache sync.
13804cc is described below
commit 13804cc4d863cabefdbf2ef4bb5d15d13d6339e8
Author: Gancho Tenev <[email protected]>
AuthorDate: Mon May 15 10:25:34 2017 -0700
Fix version and virtualhost config cache sync.
---
plugins/s3_auth/s3_auth.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/s3_auth/s3_auth.cc b/plugins/s3_auth/s3_auth.cc
index 772bb55..d00a87b 100644
--- a/plugins/s3_auth/s3_auth.cc
+++ b/plugins/s3_auth/s3_auth.cc
@@ -131,10 +131,10 @@ public:
_keyid_len = src->_keyid_len;
}
- if (_version_modified) {
+ if (src->_version_modified) {
_version = src->_version;
}
- if (_virt_host_modified) {
+ if (src->_virt_host_modified) {
_virt_host = src->_virt_host;
}
}
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].