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

Extend intersystems.servers objects to contain optional superServer object #182

Closed
gjsjohnmurray opened this issue Jun 1, 2023 · 0 comments · Fixed by #200
Closed

Extend intersystems.servers objects to contain optional superServer object #182

gjsjohnmurray opened this issue Jun 1, 2023 · 0 comments · Fixed by #200
Labels
enhancement New feature or request

Comments

@gjsjohnmurray
Copy link
Collaborator

I am already doing this in an extension that uses the InterSystems Node.js Native API, which connects to the superserver port:

export interface ISuperServerSpec {
	host?: string;
	port: number;
}

export interface IServerSpec extends serverManager.IServerSpec {
	superServer?: ISuperServerSpec;
}

https://github.com/intersystems-community/vscode-iris-jupyter-server/blob/dbb4f99f2d245460292c45e1a45378e8c7ef69e1/src/server.ts#L6-L13

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
2 participants
@gjsjohnmurray and others