Эх сурвалжийг харах

[core] Show that postgresql_psycopg2 is supported

abec 13 жил өмнө
parent
commit
85cd772

+ 1 - 1
desktop/conf.dist/hue.ini

@@ -157,7 +157,7 @@
   # ------------------------------------------------------------------------
   [[database]]
     # Database engine is typically one of:
-    # postgresql, mysql, sqlite3, or oracle
+    # postgresql_psycopg2, mysql, or sqlite3
     #
     # Note that for sqlite3, 'name', below is a filename;
     # for other backends, it is the database name.

+ 1 - 1
desktop/conf/pseudo-distributed.ini.tmpl

@@ -163,7 +163,7 @@
   # ------------------------------------------------------------------------
   [[database]]
     # Database engine is typically one of:
-    # postgresql, mysql, sqlite3, or oracle
+    # postgresql_psycopg2, mysql, or sqlite3
     #
     # Note that for sqlite3, 'name', below is a filename;
     # for other backends, it is the database name.

+ 1 - 1
desktop/core/src/desktop/conf.py

@@ -146,7 +146,7 @@ DATABASE = ConfigSection(
   members=dict(
     ENGINE=Config(
       key='engine',
-      help=_('Database engine, such as postgresql, mysql, sqlite3, or Oracle.'),
+      help=_('Database engine, such as postgresql_psycopg2, mysql, or sqlite3.'),
       type=str,
       default='sqlite3',
     ),