You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The application should respond to requests to /.well-known/openid-configuration. The scanning code that enumerates page files includes the openid-configuration.up file and the pushup build dir includes a translated source file .well-known__openid-configuration.up.go. However the go build conventions omit this file, making the URL return a 404 error.
Renaming this file in the build directory to omit the leading . character and re-running go build causes the URL to be recognized. It seems the pushup compiler should take a similar step, mangling the name in a way to ensure it gets included.
The text was updated successfully, but these errors were encountered:
With a project directory structure like this:
The application should respond to requests to
/.well-known/openid-configuration
. The scanning code that enumerates page files includes theopenid-configuration.up
file and the pushup build dir includes a translated source file.well-known__openid-configuration.up.go
. However the go build conventions omit this file, making the URL return a 404 error.Renaming this file in the build directory to omit the leading
.
character and re-runninggo build
causes the URL to be recognized. It seems the pushup compiler should take a similar step, mangling the name in a way to ensure it gets included.The text was updated successfully, but these errors were encountered: