Update of /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui/launching
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18380/src/org/python/pydev/debug/ui/launching
Modified Files:
PythonRunnerConfig.java
Log Message:
Added debugger launch timeout preference
Index: PythonRunnerConfig.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/ui/launching/PythonRunnerConfig.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** PythonRunnerConfig.java 6 Jul 2004 17:52:07 -0000 1.7
--- PythonRunnerConfig.java 25 Jul 2004 13:53:51 -0000 1.8
***************
*** 23,26 ****
--- 23,27 ----
import org.python.pydev.debug.core.Constants;
import org.python.pydev.debug.core.PydevDebugPlugin;
+ import org.python.pydev.plugin.PydevPrefs;
/**
***************
*** 54,57 ****
--- 55,59 ----
IPath workingPath = ExternalToolsUtil.getWorkingDirectory(conf);
workingDirectory = workingPath == null ? null : workingPath.toFile();
+ acceptTimeout = PydevPrefs.getPreferences().getInt(PydevPrefs.CONNECT_TIMEOUT);
if (isDebug) {
debugScript = getDebugScript();
|