Improved documentation for psgi_app#8
Open
MaxPerl wants to merge 3 commits intoMartinMcGrath:masterfrom
Open
Conversation
ichesnokov
suggested changes
Jun 10, 2019
| object, construct your own object using C<< run_as_psgi() >>, as shown below. | ||
| object, you have to construct your own object using C<< run_as_psgi() >>, | ||
| as shown below, because C<< psgi_app >> creates a new CGI::PSGI object | ||
| unconditionally on every request and therefore overrides a own query object. |
There was a problem hiding this comment.
Initial version looked better IMHO. The only thing that should be added/highlighted is that QUERY parameter is not supported and will be overwritten.
I would even add a warning / exception in the code if we detect that it was passed.
| package main; | ||
|
|
||
| my $app = WebApp->psgi_app(); | ||
|
|
There was a problem hiding this comment.
I don't think that there's a need for this example here. The example I was talking about at #7 was essentially the one above: line
$psgi_coderef = WebApp->psgi_app({ ... args to new() ... }); - should be changed to something like
$psgi_coderef = WebApp->psgi_app({ ... args to new() without QUERY... }); - that's it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See #7