Blob Blame History Raw
From 71ef959bb3bb8340ef142e2a10552dd4f38862ae Mon Sep 17 00:00:00 2001
From: Jaroslav Mracek <jmracek@redhat.com>
Date: Tue, 12 Jun 2018 09:12:45 +0200
Subject: [PATCH] Remove call of dnf_context_set_yumdb_enabled

The function was removed from libdnf-0.14.0 without replacement. There is no
yumdb support anymore. Information is stored in sqlight database.
---
 dnf/dnf-main.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dnf/dnf-main.c b/dnf/dnf-main.c
index 09454e0..ef5a04e 100644
--- a/dnf/dnf-main.c
+++ b/dnf/dnf-main.c
@@ -100,7 +100,6 @@ context_new (void)
   dnf_context_set_check_transaction (ctx, TRUE);
   dnf_context_set_keep_cache (ctx, FALSE);
   dnf_context_set_cache_age (ctx, 0);
-  dnf_context_set_yumdb_enabled (ctx, FALSE);
 
   return ctx;
 }