handsome-accountant-55124
03/03/2021, 8:04 AMpushEndpoint: myCloudRunService.status.url
But now there is a 'statuses' property instead. I've tried something like below but that doesn't work 😔
pushEndpoint: myCloudRunService.statuses.get().pop()!.url
or
pushEndpoint: myCloudRunService.statuses.apply(
statuses => {
let hostname = statuses.pop()!.url;
return hostname;
})
Super grateful for any help on this one.