You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{ name: 'ResponseError',
message: 'Expected 8 or 0 byte long (4)',
info: 'Represents a error message from the server',
code: 8704,
isServerUnhealthy: false }
Not sure what this error is referring to?
The text was updated successfully, but these errors were encountered:
I am trying to update using six insert statements, like so:
[ { query: 'INSERT INTO accounting_user (username, timestamp, usertype, statustype, delaytime, inputoctets, outputoctets, sessionid, sessiontime, terminatecause, nasidentifier, nasport, framedip, callingstationid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)',
params:
[ 'user1',
'd20ec080-23ae-11e2-9318-273e7e437743',
'broadband',
'Start',
0,
0,
0,
'8312ff770d162c9777a71af111e1ec44',
21600,
'User-Request',
'1.1.1.1',
37297,
'2.2.2.2',
'00:1d:7d:a1' ] },
{ query: 'INSERT INTO accounting_ip (username, timestamp, usertype, statustype, delaytime, inputoctets, outputoctets, sessionid, sessiontime, terminatecause, nasidentifier, nasport, framedip, callingstationid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)',
params:
[ 'user1',
'd20ec080-23ae-11e2-9318-273e7e437743',
'broadband',
'Start',
0,
0,
0,
'8312ff770d162c9777a71af111e1ec44',
21600,
'User-Request',
'1.1.1.1',
37297,
'2.2.2.2',
'00:1d:7d:a1' ] },
{ query: 'INSERT INTO accounting_session (username, timestamp, usertype, statustype, delaytime, inputoctets, outputoctets, sessionid, sessiontime, terminatecause, nasidentifier, nasport, framedip, callingstationid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)',
params:
[ 'user1',
'd20ec080-23ae-11e2-9318-273e7e437743',
'broadband',
'Start',
0,
0,
0,
'8312ff770d162c9777a71af111e1ec44',
21600,
'User-Request',
'1.1.1.1',
37297,
'2.2.2.2',
'00:1d:7d:a1' ] },
{ query: 'INSERT INTO accounting_user (username, timestamp, usertype, statustype, delaytime, inputoctets, outputoctets, sessionid, sessiontime, terminatecause, nasidentifier, nasport, framedip, callingstationid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)',
params:
[ 'user1',
'1ca93080-23e1-11e2-9318-273e7e437743',
'broadband',
'Stop',
0,
0,
0,
'8312ff770d162c9777a71af111e1ec44',
21600,
'User-Request',
'1.1.1.1',
37297,
'2.2.2.2',
'00:1d:7d:a1' ] },
{ query: 'INSERT INTO accounting_ip (username, timestamp, usertype, statustype, delaytime, inputoctets, outputoctets, sessionid, sessiontime, terminatecause, nasidentifier, nasport, framedip, callingstationid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)',
params:
[ 'user1',
'1ca93080-23e1-11e2-9318-273e7e437743',
'broadband',
'Stop',
0,
0,
0,
'8312ff770d162c9777a71af111e1ec44',
21600,
'User-Request',
'1.1.1.1',
37297,
'2.2.2.2',
'00:1d:7d:a1' ] },
{ query: 'INSERT INTO accounting_session (username, timestamp, usertype, statustype, delaytime, inputoctets, outputoctets, sessionid, sessiontime, terminatecause, nasidentifier, nasport, framedip, callingstationid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)',
params:
[ 'user1',
'1ca93080-23e1-11e2-9318-273e7e437743',
'broadband',
'Stop',
0,
0,
0,
'8312ff770d162c9777a71af111e1ec44',
21600,
'User-Request',
'1.1.1.1',
37297,
'2.2.2.2',
'00:1d:7d:a1' ] } ]
And getting back the following error:
{ name: 'ResponseError',
message: 'Expected 8 or 0 byte long (4)',
info: 'Represents a error message from the server',
code: 8704,
isServerUnhealthy: false }
Not sure what this error is referring to?
The text was updated successfully, but these errors were encountered: