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
Until this moment, luatest didn't parse a custom net box URI correctly
in the case of a Unix socket if it was as follows:
unix/:/tmp/foo1/bar1.iproto
login:password@unix/:/tmp/foo2/bar2.iproto
So it created wrong directories for such sockets:
unix/:/tmp/foo1/
login:password@unix/:/tmp/foo2/
instead of correct ones:
/tmp/foo1/
/tmp/foo2/
Now this is fixed.
Fixes#313
0 commit comments