From ea624bf202c946b39e8ff0dd2ae342f14610c026 Mon Sep 17 00:00:00 2001
From: Leigh B Stoller <stoller@flux.utah.edu>
Date: Wed, 22 May 2024 06:55:05 -0600
Subject: [PATCH] Get rid of tberror() calls, flushing this when I see it.

---
 apt/APT_Dataset.pm.in | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/apt/APT_Dataset.pm.in b/apt/APT_Dataset.pm.in
index 1f093af550..ffb3215c56 100644
--- a/apt/APT_Dataset.pm.in
+++ b/apt/APT_Dataset.pm.in
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -wT
 #
-# Copyright (c) 2007-2023 University of Utah and the Flux Group.
+# Copyright (c) 2007-2024 University of Utah and the Flux Group.
 # 
 # {{{EMULAB-LICENSE
 # 
@@ -251,7 +251,7 @@ sub Create($$)
 
     if ($query_result->numrows) {
 	DBQueryWarn("unlock tables");
-	tberror("Dataset uuid $uuid already exists!");
+	print "*** Dataset uuid $uuid already exists!\n";
 	return undef;
     }
 
@@ -261,7 +261,7 @@ sub Create($$)
 
     if ($query_result->numrows) {
 	DBQueryWarn("unlock tables");
-	tberror("Dataset $pid/$id already exists!");
+	print "*** Dataset $pid/$id already exists!\n";
 	return undef;
     }
 
@@ -273,7 +273,6 @@ sub Create($$)
 
     if (! DBQueryWarn($query)) {
 	DBQueryWarn("unlock tables");
-	tberror("Error inserting new apt_datasets record for $uuid!");
 	return undef;
     }
     DBQueryWarn("unlock tables");
-- 
GitLab