aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--solr-8.3.1/server/tmp/start_3204295554151338130.properties11
-rw-r--r--solr-8.3.1/server/tmp/start_5812170489311981381.properties11
-rw-r--r--src/server/DashSession/Session/agents/monitor.ts6
3 files changed, 25 insertions, 3 deletions
diff --git a/solr-8.3.1/server/tmp/start_3204295554151338130.properties b/solr-8.3.1/server/tmp/start_3204295554151338130.properties
new file mode 100644
index 000000000..8ce47f861
--- /dev/null
+++ b/solr-8.3.1/server/tmp/start_3204295554151338130.properties
@@ -0,0 +1,11 @@
+#start.jar properties
+#Wed Jan 08 17:42:54 UTC 2020
+java.version.platform=8
+java.version=1.8.0_211
+java.version.micro=0
+jetty.home=C\:\\Users\\dash\\Documents\\Dash-Web\\solr-8.3.1\\server
+java.version.minor=8
+jetty.home.uri=file\:///C\:/Users/dash/Documents/Dash-Web/solr-8.3.1/server
+jetty.base=C\:\\Users\\dash\\Documents\\Dash-Web\\solr-8.3.1\\server
+java.version.major=1
+jetty.base.uri=file\:///C\:/Users/dash/Documents/Dash-Web/solr-8.3.1/server
diff --git a/solr-8.3.1/server/tmp/start_5812170489311981381.properties b/solr-8.3.1/server/tmp/start_5812170489311981381.properties
new file mode 100644
index 000000000..c4be08baf
--- /dev/null
+++ b/solr-8.3.1/server/tmp/start_5812170489311981381.properties
@@ -0,0 +1,11 @@
+#start.jar properties
+#Thu Jan 16 17:33:01 UTC 2020
+java.version.platform=8
+java.version=1.8.0_211
+java.version.micro=0
+jetty.home=C\:\\Users\\dash\\Documents\\Dash-Web\\solr-8.3.1\\server
+java.version.minor=8
+jetty.home.uri=file\:///C\:/Users/dash/Documents/Dash-Web/solr-8.3.1/server
+jetty.base=C\:\\Users\\dash\\Documents\\Dash-Web\\solr-8.3.1\\server
+java.version.major=1
+jetty.base.uri=file\:///C\:/Users/dash/Documents/Dash-Web/solr-8.3.1/server
diff --git a/src/server/DashSession/Session/agents/monitor.ts b/src/server/DashSession/Session/agents/monitor.ts
index 1d4ea6fb5..6f8d25614 100644
--- a/src/server/DashSession/Session/agents/monitor.ts
+++ b/src/server/DashSession/Session/agents/monitor.ts
@@ -22,7 +22,7 @@ export class Monitor extends IPCMessageReceiver {
private readonly config: Configuration;
private activeWorker: Worker | undefined;
private key: string | undefined;
- private repl: Repl;
+ // private repl: Repl;
public static Create() {
if (isWorker) {
@@ -46,7 +46,7 @@ export class Monitor extends IPCMessageReceiver {
this.configureInternalHandlers();
this.config = this.loadAndValidateConfiguration();
this.initializeClusterFunctions();
- this.repl = this.initializeRepl();
+ // this.repl = this.initializeRepl();
}
protected configureInternalHandlers = () => {
@@ -119,7 +119,7 @@ export class Monitor extends IPCMessageReceiver {
* that can invoke application logic external to this module
*/
public addReplCommand = (basename: string, argPatterns: (RegExp | string)[], action: ReplAction) => {
- this.repl.registerCommand(basename, argPatterns, action);
+ // this.repl.registerCommand(basename, argPatterns, action);
}
public exec = (command: string, options?: ExecOptions) => {