Hi,kevin stani
The cause of this issue may be due to the SQL Server Agent job running longer than the interval between executions. Perform the following configuration, and if the problem persists, try setting it to 60 minutes.
USE master
GO
exec sp_changedistributor_property
@property = 'heartbeat_interval',
@value = 30;
Regards
Mikey Qiao
If you're satisfied with the answer, don't forget to "Accept it," as this will help others who have similar questions to yours.