From e6cdacc33c377e67218ad87e5aeef9877ea2d4d2 Mon Sep 17 00:00:00 2001
From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Date: Fri, 10 Jan 2020 10:49:45 +0000
Subject: [PATCH] Bug 23377: (QA follow-up) Use OVERRIDE_SYSPREF
Content-Type: text/plain; charset=utf-8

SYSPREF_OVERRIDE unfortunately is not supported ;)

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
---
 misc/migration_tools/bulkmarcimport.pl | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/misc/migration_tools/bulkmarcimport.pl b/misc/migration_tools/bulkmarcimport.pl
index a7a4ca10f4..6025580a73 100755
--- a/misc/migration_tools/bulkmarcimport.pl
+++ b/misc/migration_tools/bulkmarcimport.pl
@@ -159,8 +159,8 @@ if ((not defined $sourcesubfield) && (not defined $sourcetag)){
 
 # Disable logging for the biblios and authorities import operation. It would unnecessarily
 # slow the import
-$ENV{SYSPREF_OVERRIDE_CataloguingLog} = 0;
-$ENV{SYSPREF_OVERRIDE_AuthoritiesLog} = 0;
+$ENV{OVERRIDE_SYSPREF_CataloguingLog} = 0;
+$ENV{OVERRIDE_SYSPREF_AuthoritiesLog} = 0;
 
 if ($fk_off) {
 	$dbh->do("SET FOREIGN_KEY_CHECKS = 0");
@@ -558,8 +558,8 @@ if ($fk_off) {
 }
 
 # Restore CataloguingLog and AuthoritiesLog
-delete $ENV{SYSPREF_OVERRIDE_CataloguingLog};
-delete $ENV{SYSPREF_OVERRIDE_AuthoritiesLog};
+delete $ENV{OVERRIDE_SYSPREF_CataloguingLog};
+delete $ENV{OVERRIDE_SYSPREF_AuthoritiesLog};
 
 my $timeneeded = gettimeofday - $starttime;
 print "\n$i MARC records done in $timeneeded seconds\n";
-- 
2.11.0