Skip to content

Commit

Permalink
1.29, add SQL commit on restore-group
Browse files Browse the repository at this point in the history
  • Loading branch information
jay0lee committed Aug 27, 2019
1 parent 6deb98b commit 0386ab5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ script:
- $gyb --action restore --local-folder travis/samples/gyb-format --email $gyb_user
- $gyb --action restore --local-folder travis/samples/gyb-format --email $gyb_user --service-account --noresume --fast-restore
- $gyb --action restore-group --local-folder travis/samples/gyb-format --email $gyb_group --use-admin $gyb_user
- $gyb --action restore-group --local-folder travis/samples/gyb-format --email $gyb_group --use-admin $gyb_user --service-account --noresume --fast-restore
- $gyb --action restore-group --local-folder travis/samples/gyb-format --email $gyb_group --use-admin $gyb_user
- $gyb --action restore-group --local-folder travis/samples/gyb-format --email $gyb_group --use-admin $gyb_user --service-account --noresume
- $gyb --action restore-group --local-folder travis/samples/gyb-format --email $gyb_group --use-admin $gyb_user --service-account
- $gyb --action restore-mbox --local-folder travis/samples/historic-public-mbox --email $gyb_user
- $gyb --action restore-mbox --local-folder travis/samples/historic-public-mbox --email $gyb_user --service-account --noresume --fast-restore
- $gyb --action restore-mbox --local-folder travis/samples/google-takeout --email $gyb_user
Expand Down
3 changes: 2 additions & 1 deletion gyb.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
__program_name__ = 'Got Your Back: Gmail Backup'
__author__ = 'Jay Lee'
__email__ = '[email protected]'
__version__ = '1.28'
__version__ = '1.29'
__license__ = 'Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0)'
__website__ = 'https://git.io/gyb'
__db_schema_version__ = '6'
Expand Down Expand Up @@ -1915,6 +1915,7 @@ def main(argv):
'INSERT OR IGNORE INTO restored_messages (message_num) VALUES (?)',
(message_num,))
sqlconn.commit()
sqlconn.commit()
sqlconn.execute('DETACH resume')
sqlconn.commit()

Expand Down

0 comments on commit 0386ab5

Please sign in to comment.