From 0468c511fde2450bdcb560b61f8dffe72827e5ed Mon Sep 17 00:00:00 2001
From: Ger van Diepen <diepen@astron.nl>
Date: Thu, 27 Oct 2005 13:13:03 +0000
Subject: [PATCH] BugID: 428 Do not use locks on ANTENNA table

---
 CEP/BB/MS/src/makems.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CEP/BB/MS/src/makems.cc b/CEP/BB/MS/src/makems.cc
index d27a70d9b2c..7829a09a052 100644
--- a/CEP/BB/MS/src/makems.cc
+++ b/CEP/BB/MS/src/makems.cc
@@ -165,7 +165,7 @@ void doMaster (bool send)
   // Get the station info from the given antenna table.
   string msName = params.getString ("MSName");
   string tabName = params.getString ("AntennaTableName");
-  Table tab(tabName);
+  Table tab(tabName, TableLock(TableLock::AutoNoReadLocking));
   ROArrayColumn<double> posCol(tab, "POSITION");
   Array<double> antPos = posCol.getColumn();
 
-- 
GitLab