Merge pull request #12459 from AllForNothing/instance-name

Query preheat instance by name
This commit is contained in:
Will Sun 2020-07-13 10:59:18 +08:00 committed by GitHub
commit 85f53bbfc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -169,7 +169,7 @@ export class DistributionInstancesComponent implements OnInit, OnDestroy {
this.operationService.publishInfo(operMessage);
this.disService.UpdateInstance({
propertySet: {default: true},
instanceId: this.selectedRow[0].id
preheatInstanceName: this.selectedRow[0].name
})
.subscribe(
() => {
@ -273,7 +273,7 @@ export class DistributionInstancesComponent implements OnInit, OnDestroy {
operMessage.data.name = instance.name;
this.operationService.publishInfo(operMessage);
return this.disService.DeleteInstance({instanceId: instance.id}).pipe(
return this.disService.DeleteInstance({preheatInstanceName: instance.name}).pipe(
map(() => {
this.translate.get('DISTRIBUTION.DELETED_SUCCESS').subscribe(msg => {
operateChanges(operMessage, OperationState.success);
@ -305,7 +305,7 @@ export class DistributionInstancesComponent implements OnInit, OnDestroy {
return this.disService
.UpdateInstance({
propertySet: {enabled: true},
instanceId: instance.id
preheatInstanceName: instance.name
})
.pipe(
map(() => {
@ -339,7 +339,7 @@ export class DistributionInstancesComponent implements OnInit, OnDestroy {
return this.disService
.UpdateInstance({
propertySet: {enabled: false},
instanceId: instance.id
preheatInstanceName: instance.name
})
.pipe(
map(() => {

View File

@ -119,7 +119,7 @@ export class DistributionSetupModalComponent implements OnInit {
operMessageForEdit.data.name = this.model.name;
this.operationService.publishInfo(operMessageForEdit);
this.saveBtnState = ClrLoadingState.LOADING;
this.distributionService.UpdateInstance({instanceId: this.model.id, propertySet: data
this.distributionService.UpdateInstance({preheatInstanceName: this.model.name, propertySet: data
}).subscribe(
response => {
this.translate.get('DISTRIBUTION.UPDATE_SUCCESS').subscribe(msg => {