diff --git a/hosting.module b/hosting.module
index f4d86b9..58ed3e7 100755
--- a/hosting.module
+++ b/hosting.module
@@ -405,8 +405,8 @@ function _hosting_setup_cron() {
   if (sizeof($cron)) {
     foreach ($cron as $line => $entry) {
       if (preg_match('/hosting dispatch/', $entry)) {
-        $pattern = "+(.*)'(.*)/drush.php'(.*)--root='(.*)'.*+";
-        $replace = sprintf("$1 '%s' --root='$4' $3 > /dev/null)", DRUSH_COMMAND);
+        $pattern = "+(.*)'(.*)/drush.php'(.*)--root='(.*)'--uri='(.*)'.*+";
+        $replace = sprintf("$1 '%s' --root='$4' --uri='%s' $3)", DRUSH_COMMAND, drush_get_option('uri'));
         $cron[$line] = preg_replace($pattern, $replace, $entry);
         drush_log(dt("Existing hosting dispatch cron entry was found. Replacing"));
         $existing = TRUE;
