Skip to content
This repository was archived by the owner on Aug 4, 2023. It is now read-only.

Commit 6ee2d6a

Browse files
committedAug 6, 2021
fix: adding CORS to API Gateway
1 parent 9769c51 commit 6ee2d6a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎flamingo/services/builders.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -350,13 +350,13 @@ def _add_api_gateway_steps(self):
350350
# We use the default volume to share date between steps
351351
# https://cloud.google.com/build/docs/build-config#volumes
352352
spec_path = self.app.gateway.spec_path
353-
custom_yaml = f"x-google-backend:\\n address: {self.app.gateway.gateway_endpoint}"
354-
custom_yaml += f"host: \"{self.app.gateway.gateway_service}\"\\n"
355-
custom_yaml += f"x-google-endpoints:\\n name: \"{self.app.gateway.gateway_service}\"\\n allowCors: True"
353+
custom_yaml = f"x-google-backend:\\n address: {self.app.endpoint}\\n"
354+
custom_yaml += f'host: \\"{self.app.gateway.gateway_service}\\"\\n'
355+
custom_yaml += f'x-google-endpoints:\\n- name: \\"{self.app.gateway.gateway_service}\\"\\n allowCors: true'
356356
config = self._service.make_build_step(
357357
identifier="Personalize API Gateway Specification",
358358
name="bash",
359-
args=['-c', f"echo -e '{custom_yaml}' >> {spec_path}"],
359+
args=['-c', f'echo -e "{custom_yaml}" >> {spec_path}'],
360360
)
361361
self.steps.append(config)
362362

0 commit comments

Comments
 (0)
This repository has been archived.