Skip to content

Commit df0c8f9

Browse files
chore: Enable access control in make dev-backend-flex (#21248)
For access control to work, the other servers need to be explicitly configured to talk to auth-server, and I forgot to do this in our `make dev-backend-flex` dev command.
1 parent 4509319 commit df0c8f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,9 +346,9 @@ dev-backend:
346346
.PHONY: dev-backend-flex
347347
dev-backend-flex:
348348
$(python) scripts/run_concurrently.py \
349-
$(MAKE) -C robot-server dev-flex BEHIND_DEV_PROXY=1 ';' \
350349
$(MAKE) -C auth-server dev ';' \
351-
$(MAKE) -C system-server dev ';' \
350+
$(MAKE) -C robot-server dev-flex OT_ROBOT_SERVER_auth_server_url=http://localhost:31950 BEHIND_DEV_PROXY=1 ';' \
351+
$(MAKE) -C system-server dev OT_SYSTEM_SERVER_auth_server_url=http://localhost:31950 ';' \
352352
$(MAKE) dev-proxy
353353

354354
# Assuming our dev servers are running separately (make -C robot-server dev, make -C auth-server dev, etc.),

0 commit comments

Comments
 (0)