When I first set up my Cloud Tasks I never choose a location, I let Google do it based off of my project settings. When I run $ gcloud functions list all of my functions are in us-central1
When I go to the Cloud Task console to check on my queue the Location is us-east1 and when I run $ gcloud app describe I get locationId: us-east1
Why are the Locations different and will this cause any issues with my project?
Im my index.js file I use the following to set my queuePath:
const project = JSON.parse(process.env.FIREBASE_CONFIG!).projectId;
const location = 'us-east1';
const queue = 'ttl-task';

