Skip to content

Commit

Permalink
fix: update WebSocket connection URL in BioreactorBOT component
Browse files Browse the repository at this point in the history
  • Loading branch information
kalyan540 committed Dec 26, 2024
1 parent 42e6b14 commit 1f68be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset-frontend/src/pages/Dashboard/bot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const BioreactorBOT = () => {

useEffect(() => {
// Open WebSocket connection
socket.current = new WebSocket('ws://localhost:8765');
socket.current = new WebSocket('ws://ec2-54-221-103-4.compute-1.amazonaws.com/:8765');

socket.current.onopen = () => {
console.log("Connected to WebSocket server");
Expand Down

0 comments on commit 1f68be4

Please sign in to comment.