Skip to content

Commit

Permalink
prova workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Paolo-Beci committed Apr 15, 2024
1 parent acc21e6 commit 85d2ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def handle_client():
json_str = json.dumps(example_json_data)

# Send JSON data to the client
server_socket.sendto(json_str.encode(), ("0.0.0.0", port)) # Check with cmd: nc -ul 9870
server_socket.sendto(json_str.encode(), (LOCALHOST_IP, port)) # Check with cmd: nc -ul 9870

time.sleep(1)
except Exception as e:
Expand Down

0 comments on commit 85d2ab8

Please sign in to comment.