Merge pull request #6468 from zhoumeina/fix_500_gc

#6440 fix gc will have 500 error when user try to put a new schedule
This commit is contained in:
Mia ZHOU 2018-12-06 14:22:43 +08:00 committed by GitHub
commit 9100dfdb5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,26 +100,7 @@ export class GcComponent implements OnInit {
this.disableGC = false; this.disableGC = false;
} }
scheduleGc(): void { private resetSchedule(offTime) {
let offTime = this.gcUtility.getOffTime(this.dailyTime);
if (this.schedule) {
this.gcRepoService.putScheduleGc(this.scheduleType, offTime, this.weekDay.value).subscribe(response => {
this.translate.get('GC.MSG_SCHEDULE_RESET').subscribe((res: string) => {
this.errorHandler.info(res);
});
this.originScheduleType = this.scheduleType;
this.originWeekDay = this.weekDay;
this.originOffTime = { value: offTime, text: this.dailyTime };
this.isEditMode = false;
this.getJobs();
}, error => {
this.errorHandler.error(error);
});
} else {
this.gcRepoService.postScheduleGc(this.scheduleType, offTime, this.weekDay.value).subscribe(response => {
this.translate.get('GC.MSG_SCHEDULE_SET').subscribe((res: string) => {
this.errorHandler.info(res);
});
this.schedule = { this.schedule = {
schedule: { schedule: {
type: this.scheduleType, type: this.scheduleType,
@ -132,6 +113,26 @@ export class GcComponent implements OnInit {
this.originOffTime = { value: offTime, text: this.dailyTime }; this.originOffTime = { value: offTime, text: this.dailyTime };
this.isEditMode = false; this.isEditMode = false;
this.getJobs(); this.getJobs();
}
scheduleGc(): void {
let offTime = this.gcUtility.getOffTime(this.dailyTime);
let schedule = this.schedule;
if (schedule && schedule.schedule && schedule.schedule.type !== SCHEDULE_TYPE.NONE) {
this.gcRepoService.putScheduleGc(this.scheduleType, offTime, this.weekDay.value).subscribe(response => {
this.translate.get('GC.MSG_SCHEDULE_RESET').subscribe((res: string) => {
this.errorHandler.info(res);
});
this.resetSchedule(offTime);
}, error => {
this.errorHandler.error(error);
});
} else {
this.gcRepoService.postScheduleGc(this.scheduleType, offTime, this.weekDay.value).subscribe(response => {
this.translate.get('GC.MSG_SCHEDULE_SET').subscribe((res: string) => {
this.errorHandler.info(res);
});
this.resetSchedule(offTime);
}, error => { }, error => {
this.errorHandler.error(error); this.errorHandler.error(error);
}); });