コード例 #1
0
ファイル: barbican_manage.py プロジェクト: openstack/barbican
 def history(self, conf, dburl=None, verbose=None):
     if dburl is None:
         commands.history(verbose, sql_url=CONF.sql_connection)
     else:
         commands.history(verbose, sql_url=str(dburl))
コード例 #2
0
ファイル: barbican-db-manage.py プロジェクト: Banno/barbican
 def history(self, args):
     commands.history(args.verbose, sql_url=args.dburl)
コード例 #3
0
 def history(self, dburl=None, verbose=None):
     if dburl is None:
         commands.history(verbose, sql_url=CONF.sql_connection)
     else:
         commands.history(verbose, sql_url=str(dburl))
コード例 #4
0
ファイル: db_manage.py プロジェクト: zzh8002/barbican
 def history(self, args):
     commands.history(args.verbose, sql_url=args.dburl)