Hi folks,
This code part of my notebook keeps running and never ends:
GOOGLE_CLOUD_PROJECT = ‘qwiklabs-gcp-03-XXXXXXXXXX’ # <— ENTER THIS
GOOGLE_CLOUD_REGION = ‘us-east1’
GCS_BUCKET_NAME = GOOGLE_CLOUD_PROJECT + ‘-gcs’if not (GOOGLE_CLOUD_PROJECT and GOOGLE_CLOUD_REGION and GCS_BUCKET_NAME):
from absl import logging
logging.error(‘Please set all required parameters.’)
I’ve set my project correctly, and kept the ‘us-east1’ (the default value that was already set). But it keeps executing for several minutes, and then the connection goes down.
Is there anything else that I should had done to make this work?