Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stack Overflow Exception Fix #75

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/resourceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class KicProcessMgr {
}

public get kicList(): Array<KicCell> {
return this.kicList
return this._kicList
}

/**
Expand Down Expand Up @@ -396,7 +396,6 @@ export class KicCell extends EventEmitter {
.get("dumpQueueOnConnect")
) {
progress.report({
increment: 0,
message: "Dumping data from instrument output queue",
})
Log.info(
Expand Down Expand Up @@ -427,7 +426,6 @@ export class KicCell extends EventEmitter {
}

progress.report({
increment: 37,
message: "Getting instrument information",
})
Log.trace("Getting instrument information", LOGLOC)
Expand Down Expand Up @@ -495,7 +493,6 @@ export class KicCell extends EventEmitter {
}

progress.report({
increment: 10,
message: `Connecting to instrument with model ${_info.model} and S/N ${_info.serial_number}`,
})

Expand Down Expand Up @@ -559,7 +556,6 @@ export class KicCell extends EventEmitter {
Log.trace(`Connected to ${info.trim()}`, LOGLOC)

progress.report({
increment: 53,
message: `Connected to instrument with model ${_info.model} and S/N ${_info.serial_number}`,
})
return new Promise((resolve) => resolve([info, verified_name]))
Expand Down
Loading