Results 9 comments of

> Version is not ready to be submitted yet I think on this [line](https://github.com/fastlane/fastlane/blob/acb7d84e7ac068e424da231c2eca39fe2ec7297d/deliver/lib/deliver/submit_for_review.rb#L50), apple will check if the state of the editing app version is `READY_FOR_REVIEW` or not. Need...

if it is a just token string, you can inject it into HTTP headers ``` python def handler(event, context): print('---event--') print(event) print('---context--') print(context) event.get("headers")["token"] = token_from_lambda_event return awsgi.response(app, event, context)...

or you can get the whole event object ``` python @app.before_request def before_request() -> None: event = globals.request.environ.get("awsgi.event", {}) ```

@getaaron thanks for the comment. 1. what is the scenario that people want to opt out? 2. Do you think it is appropriate to create another file `VersionWatcher` and use...

> @404pilot are you able to make the change so it doesn't loop infinitely? > > If not, if someone wants to fork this branch and add that in a...

> @404pilot Thanks for working on this change! I was wondering when will this PR get merged. I have been experiencing this issue for the past year and this would...

@ryantenney `SpEl` starts with `#` which doesn't match regex `^\\$\\{.*\\}$`

@ryantenney Sorry I am not sure I understood your question:) During the initialization of application, metrics-spring will first validate the port number by using regex pattern `^\\$\\{.*\\}$` and find out...