29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
|
From 6eb68174565ce0402cead9e45053b560e819e982 Mon Sep 17 00:00:00 2001
|
||
|
From: Aleš Matěj <amatej@redhat.com>
|
||
|
Date: Tue, 21 Sep 2021 12:10:49 +0200
|
||
|
Subject: [PATCH] Turn off strict validation of modulemd documents (RhBug:2004853,2007166,2007167)
|
||
|
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=2004853
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=2007166
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=2007167
|
||
|
---
|
||
|
libdnf/module/modulemd/ModuleMetadata.cpp | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/libdnf/module/modulemd/ModuleMetadata.cpp b/libdnf/module/modulemd/ModuleMetadata.cpp
|
||
|
index fbdd8a1..9dcd661 100644
|
||
|
--- a/libdnf/module/modulemd/ModuleMetadata.cpp
|
||
|
+++ b/libdnf/module/modulemd/ModuleMetadata.cpp
|
||
|
@@ -78,7 +78,7 @@ void ModuleMetadata::addMetadataFromString(const std::string & yaml, int priorit
|
||
|
g_autoptr(GPtrArray) failures = NULL;
|
||
|
|
||
|
ModulemdModuleIndex * mi = modulemd_module_index_new();
|
||
|
- gboolean success = modulemd_module_index_update_from_string(mi, yaml.c_str(), TRUE, &failures, &error);
|
||
|
+ gboolean success = modulemd_module_index_update_from_string(mi, yaml.c_str(), FALSE, &failures, &error);
|
||
|
if(!success){
|
||
|
ModuleMetadata::reportFailures(failures);
|
||
|
}
|
||
|
--
|
||
|
libgit2 1.0.1
|
||
|
|