Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
aurweb
Commits
97917046
Verified
Commit
97917046
authored
Mar 08, 2022
by
Kevin Morris
Browse files
Merge branch 'fix-none-path'
parents
2a393f95
6e837e0c
Pipeline
#16416
passed with stages
in 8 minutes and 17 seconds
Changes
1
Pipelines
3
Show whitespace changes
Inline
Side-by-side
aurweb/prometheus.py
View file @
97917046
...
...
@@ -70,9 +70,17 @@ def http_requests_total() -> Callable[[Info], None]:
if
not
(
scope
.
get
(
"endpoint"
,
None
)
and
scope
.
get
(
"router"
,
None
)):
return
None
root_path
=
scope
.
get
(
"root_path"
,
""
)
app
=
scope
.
get
(
"app"
,
{})
if
hasattr
(
app
,
"root_path"
):
app_root_path
=
getattr
(
app
,
"root_path"
)
if
root_path
.
startswith
(
app_root_path
):
root_path
=
root_path
[
len
(
app_root_path
):]
base_scope
=
{
"type"
:
scope
.
get
(
"type"
),
"path"
:
scope
.
get
(
"
root_path
"
,
""
)
+
scope
.
get
(
"path"
),
"path"
:
root_path
+
scope
.
get
(
"path"
),
"path_params"
:
scope
.
get
(
"path_params"
,
{}),
"method"
:
scope
.
get
(
"method"
)
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment