Index: trunk/ippdor/src/executables/generate_exposure_dag.py
===================================================================
--- trunk/ippdor/src/executables/generate_exposure_dag.py	(revision 32902)
+++ trunk/ippdor/src/executables/generate_exposure_dag.py	(revision 32903)
@@ -19,17 +19,15 @@
                  label, 
                  exposure_name, 
-                 recipient,
-                 host='ippdb01.ifa.hawaii.edu', 
-                 user='ipp', 
-                 passwd='ipp'):
+                 recipient):
         """
         Create a connector to the gpc1 database and a local directory
         dedicated to the exposure
         """
-        ChipManager.__init__(self, label, exposure_name, recipient, host, user, passwd)
-        CamManager.__init__(self, label, exposure_name, recipient, host, user, passwd)
-        FakeManager.__init__(self, label, exposure_name, recipient, host, user, passwd)
-        WarpManager.__init__(self, label, exposure_name, recipient, host, user, passwd)
-        self.exposure_directory = '%s/%s/%s' % (GlobalConstants.LOCAL_TMP_DIR, label, exposure_name)
+        ChipManager.__init__(self, label, exposure_name, recipient)
+        CamManager.__init__(self, label, exposure_name, recipient)
+        FakeManager.__init__(self, label, exposure_name, recipient)
+        WarpManager.__init__(self, label, exposure_name, recipient)
+        self.exposure_directory = '%s/%s/%s' % (GlobalConstants.LOCAL_TMP_DIR, 
+                                                label, exposure_name)
         mkdir(self.exposure_directory)
         return
