First customization to avm99963-bugs

- Only a service is used (default) in order to keep usage within Google
  Cloud's free tier.
- Settings have been adapted.
- Only a single DB instance is used (primary).
- Some cron jobs are executed less often.
- |threadsafe| has been set to "yes" so the single instance can serve
  concurrent requests (otherwise the search/list issues function
  breaks).

GitOrigin-RevId: 52130750a30a5aa2234a6dd3f5ae23c3fb1b8343
diff --git a/search/test/frontendsearchpipeline_test.py b/search/test/frontendsearchpipeline_test.py
index b2e7fb3..432a9d1 100644
--- a/search/test/frontendsearchpipeline_test.py
+++ b/search/test/frontendsearchpipeline_test.py
@@ -937,7 +937,7 @@
     a_fake_rpc = testing_helpers.Blank(callback=None)
     urlfetch.create_rpc(deadline=settings.backend_deadline).AndReturn(
       a_fake_rpc)
-    modules.get_hostname(module='besearch')
+    modules.get_hostname(module='default')
     urlfetch.make_fetch_call(
       a_fake_rpc, mox.StrContains(
           urls.BACKEND_SEARCH + '?groupby=cc&invalidation_timestep=12345&'
@@ -967,7 +967,7 @@
     a_fake_rpc = testing_helpers.Blank(callback=None)
     urlfetch.create_rpc(deadline=settings.backend_deadline).AndReturn(
       a_fake_rpc)
-    modules.get_hostname(module='besearch')
+    modules.get_hostname(module='default')
     urlfetch.make_fetch_call(
         a_fake_rpc,
         mox.StrContains(
@@ -1002,7 +1002,7 @@
     a_fake_rpc = testing_helpers.Blank(callback=None)
     urlfetch.create_rpc(deadline=settings.backend_deadline).AndReturn(
       a_fake_rpc)
-    modules.get_hostname(module='besearch')
+    modules.get_hostname(module='default')
     urlfetch.make_fetch_call(
       a_fake_rpc, mox.StrContains(urls.BACKEND_NONVIEWABLE),
       follow_redirects=False, headers=mox.IsA(dict))