Changes made in jupyter notebook ipynb file are not uploaded to the bucket
We upload jupyter notebook .ipynb file in google bucket. Whenever we make changes and upload the same file the changes are not being uploaded in the bucket. Looks like there is cache issue while uploading/patching the changed file. How to fix the issue??
We use the following code:
def upload_blob(self, file_to_upload):
""" Uploads file to the bucket"""
blob = self.bucket.blob(file_to_upload)
blob.upload_from_file(file_to_upload)
print('File {} uploaded to {}'.format(file_to_upload, file_to_upload))