Fix typo in logs
This commit is contained in:
parent
42bbebb781
commit
88b36662c3
|
@ -515,7 +515,7 @@ sub bind_ipc {
|
||||||
if (zmq_bind($options{socket}, 'ipc://' . $options{ipc_file}) == -1) {
|
if (zmq_bind($options{socket}, 'ipc://' . $options{ipc_file}) == -1) {
|
||||||
$self->{logger}->writeLogError("Cannot bind ipc '$options{ipc_file}': $!");
|
$self->{logger}->writeLogError("Cannot bind ipc '$options{ipc_file}': $!");
|
||||||
# try create dir
|
# try create dir
|
||||||
$self->{logger}->writeLogError("Maybe dirctory not exist. We try to create it!!!");
|
$self->{logger}->writeLogError("Maybe directory does not exist. Attempting to create it!!!");
|
||||||
if (!mkdir(dirname($options{ipc_file}))) {
|
if (!mkdir(dirname($options{ipc_file}))) {
|
||||||
zmq_close($options{socket});
|
zmq_close($options{socket});
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
Loading…
Reference in New Issue