• Consider the below as a possible solution;

    USE master

    exec sp_changedistributor_property

    @property = N’heartbeat_interval’,

    @value = 5;

    GO;

    Also, the below article may help better explain and understand your issue...

    http://maginaumova.com/the-replication-agent-has-not-logged-a-progress-message-in-10-minutes/

    GOODLUCK