Bug while editing a VNF/NS descriptor 07/11507/1
authorHarshini Rajagopal <harshini.r@tataelxsi.co.in>
Tue, 11 Jan 2022 05:36:24 +0000 (11:06 +0530)
committerHarshini Rajagopal <harshini.r@tataelxsi.co.in>
Tue, 11 Jan 2022 05:36:24 +0000 (11:06 +0530)
*Changed the content type to gzip in headers to support .gz files while editing VNF and NS
descriptors.

Change-Id: I5126731d561fd2c9ca651e02c59a47a0daf6c472
Signed-off-by: Harshini Rajagopal <harshini.r@tataelxsi.co.in>
src/app/utilities/edit-packages/EditPackagesComponent.ts

index befafb8..e38d3cf 100644 (file)
@@ -187,7 +187,7 @@ export class EditPackagesComponent implements OnInit {
       this.updateFileContentType = 'package_content';
       this.navigatePath = 'vnf';
       this.fileTypes = [{ value: 'text/x-yaml', viewValue: 'yaml' }, { value: 'text/json', viewValue: 'json' }];
       this.updateFileContentType = 'package_content';
       this.navigatePath = 'vnf';
       this.fileTypes = [{ value: 'text/x-yaml', viewValue: 'yaml' }, { value: 'text/json', viewValue: 'json' }];
-      this.httpOptions = this.getHeadersWithContentAccept('application/zip', 'application/json');
+      this.httpOptions = this.getHeadersWithContentAccept('application/gzip', 'application/json');
       this.getEditFileData();
     } else if (this.pacakgeType === 'netslice') {
       this.getUpdateURL = environment.NETWORKSLICETEMPLATE_URL;
       this.getEditFileData();
     } else if (this.pacakgeType === 'netslice') {
       this.getUpdateURL = environment.NETWORKSLICETEMPLATE_URL;
@@ -204,7 +204,7 @@ export class EditPackagesComponent implements OnInit {
       this.pacakgeType = 'nsd';
       this.navigatePath = 'ns';
       this.fileTypes = [{ value: 'text/x-yaml', viewValue: 'yaml' }, { value: 'text/json', viewValue: 'json' }];
       this.pacakgeType = 'nsd';
       this.navigatePath = 'ns';
       this.fileTypes = [{ value: 'text/x-yaml', viewValue: 'yaml' }, { value: 'text/json', viewValue: 'json' }];
-      this.httpOptions = this.getHeadersWithContentAccept('application/zip', 'application/json');
+      this.httpOptions = this.getHeadersWithContentAccept('application/gzip', 'application/json');
       this.getEditFileData();
     }
   }
       this.getEditFileData();
     }
   }