##// END OF EJS Templates
change default behavior of database task storage...
MinRK -
Show More
@@ -39,7 +39,7 b' class MongoDB(BaseDB):'
39 necessary if the default mongodb configuration does not point to your
39 necessary if the default mongodb configuration does not point to your
40 mongod instance."""
40 mongod instance."""
41 )
41 )
42 database = Unicode(config=True,
42 database = Unicode("ipython-tasks", config=True,
43 help="""The MongoDB database name to use for storing tasks for this session. If unspecified,
43 help="""The MongoDB database name to use for storing tasks for this session. If unspecified,
44 a new database will be created with the Hub's IDENT. Specifying the database will result
44 a new database will be created with the Hub's IDENT. Specifying the database will result
45 in tasks from previous sessions being available via Clients' db_query and
45 in tasks from previous sessions being available via Clients' db_query and
@@ -96,7 +96,7 b' class SQLiteDB(BaseDB):'
96 location = Unicode('', config=True,
96 location = Unicode('', config=True,
97 help="""The directory containing the sqlite task database. The default
97 help="""The directory containing the sqlite task database. The default
98 is to use the cluster_dir location.""")
98 is to use the cluster_dir location.""")
99 table = Unicode("", config=True,
99 table = Unicode("ipython-tasks", config=True,
100 help="""The SQLite Table to use for storing tasks for this session. If unspecified,
100 help="""The SQLite Table to use for storing tasks for this session. If unspecified,
101 a new table will be created with the Hub's IDENT. Specifying the table will result
101 a new table will be created with the Hub's IDENT. Specifying the table will result
102 in tasks from previous sessions being available via Clients' db_query and
102 in tasks from previous sessions being available via Clients' db_query and
General Comments 0
You need to be logged in to leave comments. Login now