Do not return empty list if raise exception
This commit is contained in:
parent
d45ba8de03
commit
e048e224d0
1 changed files with 4 additions and 5 deletions
|
@ -314,8 +314,9 @@ class DbTransfer(TransferBase):
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error(e)
|
logging.error(e)
|
||||||
update_transfer = {}
|
update_transfer = {}
|
||||||
|
finally:
|
||||||
|
conn.close()
|
||||||
|
|
||||||
conn.close()
|
|
||||||
return update_transfer
|
return update_transfer
|
||||||
|
|
||||||
def pull_db_all_user(self):
|
def pull_db_all_user(self):
|
||||||
|
@ -333,10 +334,8 @@ class DbTransfer(TransferBase):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
rows = self.pull_db_users(conn)
|
rows = self.pull_db_users(conn)
|
||||||
except Exception as e:
|
finally:
|
||||||
logging.error(e)
|
conn.close()
|
||||||
rows = []
|
|
||||||
conn.close()
|
|
||||||
|
|
||||||
if not rows:
|
if not rows:
|
||||||
logging.warn('no user in db')
|
logging.warn('no user in db')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue