Providing custom metadata via the metadata.metadata property as documented at https://googlecloudplatform.github.io/gcloud-node/#/docs/v0.10.0/storage/file?method=setMetadata is not working for me with gcloud 0.12, but works fine with 0.11. Standard metadata works fine, too.
Partial sample code:
var metadata = {
contentType: 'text/plain', // <- This works
metadata: {
customValue: 'MyValue' // <- This will not be set with gcloud 0.12
}
};
inStream.pipe(file.createWriteStream(metadata));
Providing custom metadata via the
metadata.metadataproperty as documented at https://googlecloudplatform.github.io/gcloud-node/#/docs/v0.10.0/storage/file?method=setMetadata is not working for me with gcloud 0.12, but works fine with 0.11. Standard metadata works fine, too.Partial sample code: