Unsolved
This post is more than 5 years old
122 Posts
0
1444
Please advice with error below...
Getting error
1340952210655 2012-06-29 06:43:30.655 [log] 12845194.258 [API] Start FPPool_GetLastError()
1340952210655 2012-06-29 06:43:30.655 [log] 12845194.258 [API] End FPPool_GetLastError() --> [0]
1340952210655 2012-06-29 06:43:30.655 [log] 12845194.258 [API] Start FPPool_GetLastError()
1340952210655 2012-06-29 06:43:30.655 [log] 12845194.258 [API] End FPPool_GetLastError() --> [0]
1340952210655 2012-06-29 06:43:30.655 [log] 12845194.258 [API] Start FPPool_GetLastError()
1340952210655 2012-06-29 06:43:30.655 [log] 12845194.258 [API] End FPPool_GetLastError() --> [0]
1340952210693 2012-06-29 06:43:30.693 [log] 12845194.2059 [API] Start FPPool_SetIntOption8(0,retrycount,-1)
1340952210693 2012-06-29 06:43:30.693 [debug] 12845194.2059 [EXCEPTION] In 'FPCore.cpp' at line 288: Exception
error=-10026
syserror=0
message=retrycount out of bounds
trace=FPCore.SetRetryCount(-1)
1340952210693 2012-06-29 06:43:30.693 [error] 12845194.2059 [API] End FPPool_SetIntOption8(-,retrycount,-1): Error -10026
1340952210693 2012-06-29 06:43:30.693 [log] 12845194.2059 [API] Start FPPool_GetLastError()
1340952210693 2012-06-29 06:43:30.693 [log] 12845194.2059 [API] End FPPool_GetLastError() --> [-10026]
1340952210694 2012-06-29 06:43:30.694 [log] 12845194.2059 [API] Start FPPool_GetLastErrorInfo(-)
1340952210694 2012-06-29 06:43:30.694 [log] 12845194.2059 [API] End FPPool_GetLastErrorInfo(-)
1340952210694 2012-06-29 06:43:30.694 [log] 12845194.2059 [API] Start FPPool_GetLastErrorInfo(-)
1340952210694 2012-06-29 06:43:30.694 [log] 12845194.2059 [API] End FPPool_GetLastErrorInfo(-)
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [POOL] Open FPSocket (mSocket=88) Connection open,unlocked marked(GOOD) Type(1) for 129.14.108.165
1340952285605 2012-06-29 06:44:45.605 [warn] 12845194.2059 [NET] FPStreamSocket::open() : Error setting socket option TCP_NODELAY to 1
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [TRANSACTION] Auth Neg Request kricad2112/8/AUTH
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [PACKET] send SmartPacket
NET_SYSTEMID type=string value=kricad2112
NET_TRANSACTIONID type=string value=kricad2112/8/AUTH
NET_VERSION type=integer value=3 NET_MESSAGEID type=integer value=52 HPP_VERSION type=integer value=1 AUTH_NEG_OPCODE type=integer value=1 AUTH_NEG_SCHEME type=string value=BasicScheme
AUTH_NEG_PROTOCOLS type=bytearray value=66
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [EXCEPTION] In 'Connection.cpp' at line 565: Exception
error=-10101
syserror=32
message=Error received from send(...)
trace=No trace available
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [POOL] Close FPSocket (mSocket=88) Connection open,unlocked marked(GOOD)
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [RETRY] AN(129.14.108.165) Unavailable (for 30 secs)
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [POOL] Close connections for addr=129.14.108.165 (num=0,max=0)
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [POOL] End close connections (num=0,max=0) ----
1340952285605 2012-06-29 06:44:45.605 [debug] 12845194.2059 [CORE] retry (0) Getpoolinfo because Exception
error=-10101
syserror=32
message=Error received from send(...)
trace=FPSocket.send transid=kricad2112/8/AUTH
mfh2
208 Posts
0
July 5th, 2012 10:00
Hello chughh -
The -10101 FPError code indicates a network problem; the last line of your log excerpt (trace=FPSocket...) is complaining that the send() system call to write on a network socket returned an error status.
So I'd say it's a safe bet that it's a networking issue
Regards,
Mike Horgan
chughh
122 Posts
0
July 6th, 2012 00:00
Thank you Mike..