Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.1046
diff -u -p -r1.1046 common.inc
--- includes/common.inc	12 Nov 2009 20:40:27 -0000	1.1046
+++ includes/common.inc	13 Nov 2009 00:52:16 -0000
@@ -6236,7 +6236,7 @@ function entity_get_info($entity_type = 
   $entity_info = &drupal_static(__FUNCTION__, array());
 
   if (empty($entity_info)) {
-    if ($cache = cache_get('entity_info')) {
+    if ($cache = cache_get('entity_info', 'cache_bootstrap')) {
       $entity_info = $cache->data;
     }
     else {
@@ -6265,7 +6265,7 @@ function entity_get_info($entity_type = 
       }
       // Let other modules alter the entity info.
       drupal_alter('entity_info', $entity_info);
-      cache_set('entity_info', $entity_info);
+      cache_set('entity_info', $entity_info, 'cache_bootstrap');
     }
   }
 
