Revision 593
Added by berkley almost 24 years ago
src/edu/ucsb/nceas/metacat/MetaCatServlet.java | ||
---|---|---|
121 | 121 |
xmlcatalogfile = util.getOption("xmlcatalogfile"); |
122 | 122 |
saxparser = util.getOption("saxparser"); |
123 | 123 |
defaultdatapath = util.getOption("defaultdatapath"); |
124 |
executescript = util.getOption("executescript"); |
|
124 |
executescript = util.getOption("executescript");
|
|
125 | 125 |
servletpath = util.getOption("servletpath"); |
126 | 126 |
htmlpath = util.getOption("htmlpath"); |
127 |
|
|
127 |
/* |
|
128 | 128 |
try { |
129 | 129 |
// Open a pool of db connections |
130 | 130 |
connectionPool = util.getConnectionPool(); |
... | ... | |
132 | 132 |
System.err.println("Error creating pool of database connections"); |
133 | 133 |
System.err.println(e.getMessage()); |
134 | 134 |
} |
135 |
*/ |
|
135 | 136 |
} catch ( ServletException ex ) { |
136 | 137 |
throw ex; |
137 | 138 |
} |
Also available in: Unified diff
removed the initial connection pool creation step in init()