我尝试使用我的应用程序(Python 2)将文件上传到GCS,但是我遇到了问题,我没有收到错误消息,但是我的文件没有上传到Google Storage,但是例如,我可以删除手动上传的文件。你知道会发生什么吗?
它在本地环境中工作。
def upload_file(self, fileUpload, fileName):
"""Upload a file to GCS"""
pathFileGCS = "/" + get_bucket() + "/" + fileName
fileType = fileUpload.type
fileContent = fileUpload.file.read()
logging.info('WNP: Creando fichero %s de tipo %s en GCS', format(pathFileGCS), fileType)
fileGCS = gcs.open(pathFileGCS, 'w', content_type=fileType)
fileGCS.write(fileContent)
fileGCS.close
答案 0 :(得分:0)
由于它在本地运行良好,并且您没有出现任何错误,因此建议您确保已将所有必需的要求包括在requirements.txt文件中。