This is an automated email from the ASF dual-hosted git repository.
heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git
The following commit(s) were added to refs/heads/master by this push:
new 325224a Wildcard modified to ** instead *
new 83c2f13 This closes #1045
325224a is described below
commit 325224a6c1daf89f188a518491a093410ab09f82
Author: Juan Cabrerizo <[email protected]>
AuthorDate: Tue Feb 12 17:10:58 2019 +0000
Wildcard modified to ** instead *
---
.../main/java/org/apache/brooklyn/util/core/xstream/XmlSerializer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/src/main/java/org/apache/brooklyn/util/core/xstream/XmlSerializer.java
b/core/src/main/java/org/apache/brooklyn/util/core/xstream/XmlSerializer.java
index 0ec770f..4822175 100644
---
a/core/src/main/java/org/apache/brooklyn/util/core/xstream/XmlSerializer.java
+++
b/core/src/main/java/org/apache/brooklyn/util/core/xstream/XmlSerializer.java
@@ -64,7 +64,7 @@ public class XmlSerializer<T> {
XStream.setupDefaultSecurity(xstream);
xstream.allowTypesByWildcard(new String[] {
- "*"
+ "**"
});
if (loader!=null) {