diff --git wp-includes/comment.php wp-includes/comment.php
index b4f4125..d9e9f7a 100644
--- wp-includes/comment.php
+++ wp-includes/comment.php
@@ -1386,6 +1386,8 @@ function generic_ping($post_id = 0) {
 			weblog_ping($service);
 	}
 
+	set_transient('generic_ping_last', time(), 1800);
+
 	return $post_id;
 }
 
diff --git wp-includes/post.php wp-includes/post.php
index 0c0ba46..8fad32d 100644
--- wp-includes/post.php
+++ wp-includes/post.php
@@ -3275,8 +3275,14 @@ function _transition_post_status($new_status, $old_status, $post) {
 			$wpdb->update( $wpdb->posts, array( 'guid' => get_permalink( $post->ID ) ), array( 'ID' => $post->ID ) );
 		do_action('private_to_published', $post->ID);  // Deprecated, use private_to_publish
 		// do generic pings once per hour at most
-		if ( !wp_next_scheduled('do_generic_ping') )
-			wp_schedule_single_event(time() + 3600, 'do_generic_ping');
+		if ( !wp_next_scheduled('do_generic_ping') ) {
+			$schedule = time();
+			$last_ping = get_transient('generic_ping_last');
+			if ($last_ping) {
+			  $schedule = max($schedule, $last_ping + 1800);
+			}
+			wp_schedule_single_event($schedule, 'do_generic_ping');
+		}
 	}
 
 	// Always clears the hook in case the post status bounced from future to draft.

