Use comma instead of pipe (better in URL path)
This commit is contained in:
@@ -379,8 +379,7 @@ class FunctionCreatorConfiguration {
|
||||
return;
|
||||
}
|
||||
FunctionRegistration<Object> registration = new FunctionRegistration<Object>(
|
||||
bean).names(
|
||||
FunctionProperties.functionName(counter.getAndIncrement()));
|
||||
bean, FunctionProperties.functionName(counter.getAndIncrement()));
|
||||
if (this.runner != null) {
|
||||
if (this.runner.containsBean(FunctionInspector.class.getName())) {
|
||||
Object inspector = this.runner
|
||||
|
||||
@@ -82,7 +82,7 @@ public class FunctionProperties {
|
||||
for (int i = 0; i <= StringUtils.countOccurrencesOf(name, ","); i++) {
|
||||
names.add("function" + i);
|
||||
}
|
||||
return StringUtils.collectionToDelimitedString(names, "|");
|
||||
return StringUtils.collectionToDelimitedString(names, ",");
|
||||
}
|
||||
|
||||
public static String functionName(int value) {
|
||||
|
||||
Reference in New Issue
Block a user