Tomer Gross
Tomer Gross
If you're running localstack (or any of the kind) and don't want your tests to try and get credentials from AWS, try - 1. set the environment variable AWS_EC2_METADATA_DISABLED =...
I bypassed this bug by excluding the secondary_opening_hours field - PlaceDetailsRequest request = PlacesApi.placeDetails(geoApiContext, placeId); request.fields(Arrays.stream(PlaceDetailsRequest.FieldMask.values()) .filter(x -> x != PlaceDetailsRequest.FieldMask.SECONDARY_OPENING_HOURS) .toArray(PlaceDetailsRequest.FieldMask[]::new)); PlaceDetails response = request.await();