[GH-ISSUE #92] TCP message not working #72

Closed
opened 2026-02-26 05:31:14 +03:00 by kerem · 1 comment
Owner

Originally created by @blackrosezy on GitHub (Sep 2, 2013).
Original GitHub issue: https://github.com/NarrativeScience-old/log.io/issues/92

Version 0.3.1 >* receives log messages via TCP is not working. The last build that works is v.0.3.0

Originally created by @blackrosezy on GitHub (Sep 2, 2013). Original GitHub issue: https://github.com/NarrativeScience-old/log.io/issues/92 Version 0.3.1 >\* receives log messages via TCP is not working. The last build that works is v.0.3.0
kerem closed this issue 2026-02-26 05:31:14 +03:00
Author
Owner

@msmathers commented on GitHub (Nov 5, 2013):

I don't believe this to be the case... There are functional tests to verify this, and I've just manually run the following python script against the latest server code on master:

# Create TCP socket

import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect(('localhost',28777))

# Start sending log messages

sock.send("+log|stream1|node1|the first log message")
sock.send("+log|stream2|node2|the second log message")

The logs appeared in the UI just fine.

<!-- gh-comment-id:27818248 --> @msmathers commented on GitHub (Nov 5, 2013): I don't believe this to be the case... There are functional tests to verify this, and I've just manually run the following python script against the latest server code on master: ``` python # Create TCP socket import socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect(('localhost',28777)) # Start sending log messages sock.send("+log|stream1|node1|the first log message") sock.send("+log|stream2|node2|the second log message") ``` The logs appeared in the UI just fine.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/log.io-NarrativeScience-old#72
No description provided.