File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/main/java/com/github/cshubhamrao/AUtDv2/gui Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,8 @@ public void initialize() {
112
112
-> executor .execute (new MySqlRunner ()));
113
113
114
114
btn_userAction .setOnAction ((e ) -> {
115
- GoogleDriveTask .UploadTask task = gDriveTask .new UploadTask (new File ("log.txt" ));
115
+ GoogleDriveTask .UploadTask task = gDriveTask .new UploadTask (new File ("log.txt" ),
116
+ "Log File created by AUtDv2" );
116
117
Future <String > resp = executor .submit (task );
117
118
checkSuccess (resp );
118
119
});
@@ -135,7 +136,8 @@ private void btn_backup_handler(ActionEvent e) {
135
136
alert .showAndWait ();
136
137
} else {
137
138
executor .execute (new MySqlDumpRunner (dbName , password ));
138
- GoogleDriveTask .UploadTask task = gDriveTask .new UploadTask (new File (dbName + ".sql" ));
139
+ GoogleDriveTask .UploadTask task = gDriveTask .new UploadTask (new File (dbName + ".sql" ),
140
+ "Backup of Database: " + dbName );
139
141
Future <String > resp = executor .submit (task );
140
142
checkSuccess (resp );
141
143
}
You can’t perform that action at this time.
0 commit comments