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
Now test with name test_t3_instance_names_no_config in test/integration/status/test_status.py disregards path of TMPDIR. The test cares about temporary directory that uses test but not about TMPDIR that can be too long.
See the error log that was in MacOS CI for example
Alerts for app:router:
• Error while connecting to instance app:router via socket /private/var/folders/7l/7gcbtl2n3gs11nqppj23z3t00000gp/T/tmpmjybm925/app/var/run/router/tarantool.control: failed to dial: dial unix /private/var/folders/7l/7gcbtl2n3gs11nqppj23z3t00000gp/T/tmpmjybm925/app/var/run/router/tarantool.control: connect: invalid argument
Alerts for app:master:
• Error while connecting to instance app:master via socket /private/var/folders/7l/7gcbtl2n3gs11nqppj23z3t00000gp/T/tmpmjybm925/app/var/run/master/tarantool.control: failed to dial: dial unix /private/var/folders/7l/7gcbtl2n3gs11nqppj23z3t00000gp/T/tmpmjybm925/app/var/run/master/tarantool.control: connect: invalid argument
Alerts for app:replica:
• Error while connecting to instance app:replica via socket /private/var/folders/7l/7gcbtl2n3gs11nqppj23z3t00000gp/T/tmpmjybm925/app/var/run/replica/tarantool.control: failed to dial: dial unix /private/var/folders/7l/7gcbtl2n3gs11nqppj23z3t00000gp/T/tmpmjybm925/app/var/run/replica/tarantool.control: connect: invalid argument
Alerts for app:stateboard:
• Error while connecting to instance app:stateboard via socket /private/var/folders/7l/7gcbtl2n3gs11nqppj23z3t00000gp/T/tmpmjybm925/app/var/run/stateboard/tarantool.control: failed to dial: dial unix /private/var/folders/7l/7gcbtl2n3gs11nqppj23z3t00000gp/T/tmpmjybm925/app/var/run/stateboard/tarantool.control: connect: invalid argument
When the expected log with right paths length should be look this way
Alerts for app:router:
• Error while connecting to instance app:router via socket /tmp/tmplbq48yhr/app/var/run/router/tarantool.control: failed to dial: dial unix /tmp/tmplbq48yhr/app/var/run/router/tarantool.control: connect: no such file or directory
Alerts for app:master:
• Error while connecting to instance app:master via socket /tmp/tmplbq48yhr/app/var/run/master/tarantool.control: failed to dial: dial unix /tmp/tmplbq48yhr/app/var/run/master/tarantool.control: connect: no such file or directory
Alerts for app:replica:
• Error while connecting to instance app:replica via socket /tmp/tmplbq48yhr/app/var/run/replica/tarantool.control: failed to dial: dial unix /tmp/tmplbq48yhr/app/var/run/replica/tarantool.control: connect: no such file or directory
Alerts for app:stateboard:
• Error while connecting to instance app:stateboard via socket /tmp/tmplbq48yhr/app/var/run/stateboard/tarantool.control: failed to dial: dial unix /tmp/tmplbq48yhr/app/var/run/stateboard/tarantool.control: connect: no such file or directory
Need to take into account the length of TMPDIR to prevent such unexpected errors.
The text was updated successfully, but these errors were encountered:
Now test with name
test_t3_instance_names_no_config
intest/integration/status/test_status.py
disregards path of TMPDIR. The test cares about temporary directory that uses test but not about TMPDIR that can be too long.See the error log that was in MacOS CI for example
When the expected log with right paths length should be look this way
Need to take into account the length of TMPDIR to prevent such unexpected errors.
The text was updated successfully, but these errors were encountered: