SMiX (Andrey Kouznetsov)
- Login: SMiX
- Email: smixok@gmail.com
- Registered on: 10/12/2010
- Last sign in: 10/12/2010
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/12/2010
-
02:02 AM Ruby Bug #3928: getaddrinfo: Name or service not known
- =begin
I have launched the script with strace and found the problem.
socket(PF_INET, SOCK_DGRAM|SOCK_NONBLOCK, IPPROTO_IP) = -1 EMFILE (Too many open files)
=end
-
01:59 AM Ruby Bug #3928: getaddrinfo: Name or service not known
- =begin
I wanted to write TCPSocket.new of course.
=end
-
01:53 AM Ruby Bug #3928 (Rejected): getaddrinfo: Name or service not known
- =begin
Hello. I am having strange error when I am creating lots of TCPSocket objects.
Here is a snippet:
require 'socket'
i = 0
while true do
socket = TCPSocket "google.com", 80
i += 1
puts i
end
On ~ 90...