Merge pull request #6206 from Dorn-/fix/openstack-publisher-encoding

fix(techdocs-commons): remove utf8 encoding on openstack publisher
This commit is contained in:
Himanshu Mishra
2021-07-02 15:54:29 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
@@ -156,7 +156,7 @@ export class OpenStackSwiftPublish implements PublisherBase {
const uploadFile = limiter(
() =>
new Promise((res, rej) => {
const readStream = fs.createReadStream(filePath, 'utf8');
const readStream = fs.createReadStream(filePath);
const writeStream = this.storageClient.upload(params);