diff options
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_disk.cc | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/tools/dcpomatic_disk.cc b/src/tools/dcpomatic_disk.cc index 3daffb72d..67705ffcb 100644 --- a/src/tools/dcpomatic_disk.cc +++ b/src/tools/dcpomatic_disk.cc @@ -250,8 +250,8 @@ private: DCPOMATIC_ASSERT (static_cast<bool>(_dcp_path)); auto ping = [this](int attempt) { - if (_nanomsg.send(DISK_WRITER_PING "\n", 2000)) { - auto reply = _nanomsg.receive (2000); + if (_nanomsg.send(DISK_WRITER_PING "\n", 1000)) { + auto reply = _nanomsg.receive (1000); if (reply && *reply == DISK_WRITER_PONG) { return true; } else if (reply) { @@ -262,6 +262,7 @@ private: } else { LOG_DISK("Could not send ping to writer (attempt %1)", attempt); } + dcpomatic_sleep_seconds (1); return false; }; @@ -274,7 +275,7 @@ private: } if (!have_writer) { -#ifdef DCPOMATIC_WINDOWS +#if defined(DCPOMATIC_WINDOWS) auto m = new MessageDialog ( this, _("DCP-o-matic Disk Writer"), @@ -283,6 +284,15 @@ private: m->ShowModal (); m->Destroy (); return; +#elif defined(DCPOMATIC_OSX) + auto m = new MessageDialog ( + this, + _("DCP-o-matic Disk Writer"), + _("Did you install the DCP-o-matic Disk Writer.pkg from the .dmg? Please check and try again.") + ); + m->ShowModal (); + m->Destroy (); + return; #else LOG_DISK_NC ("Failed to ping writer"); throw CommunicationFailedError (); |
