Disable parsing of services for validation until caching is completed.

This commit is contained in:
nsingh
2017-01-13 14:27:10 -08:00
parent daf48eaac2
commit 72d17c9f46

View File

@@ -58,8 +58,7 @@ public class ManifestYmlSchema implements YamlSchema {
YAtomicType t_service_string = f.yatomic("String");
if (servicesProvider != null) {
t_service_string.addHintProvider(servicesProvider);
t_service_string
.parseWith(ManifestYmlValueParsers.fromHints(t_service_string.toString(), servicesProvider));
// t_service_string.parseWith(ManifestYmlValueParsers.fromHints(t_service_string.toString(), servicesProvider));
}
YType t_services = f.yseq(t_service_string);