Skip to content

Commit

Permalink
update net connection settings to use wss for octopus
Browse files Browse the repository at this point in the history
  • Loading branch information
ascibisz committed Nov 22, 2023
1 parent 14756f2 commit 075236e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/Viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,14 @@ class Viewer extends React.Component<InputParams, ViewerState> {
serverIp: "0.0.0.0",
serverPort: 8765,
useOctopus: props.useOctopus,
secureConnection: false,
secureConnection: props.useOctopus,
};
} else if (props.useOctopus) {
this.netConnectionSettings = {
serverIp: "18.223.108.15",
serverPort: 8765,
useOctopus: props.useOctopus,
secureConnection: false,
useOctopus: true,
secureConnection: true,
};
} else {
this.netConnectionSettings = {
Expand Down

0 comments on commit 075236e

Please sign in to comment.