Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test metrics #140

Merged
merged 21 commits into from
Mar 18, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Conflicts and merge
  • Loading branch information
JFer11 committed Mar 16, 2021
commit d0f208899a7652e5dcfde5ce6d3c80c5b6a3d9d5
2 changes: 1 addition & 1 deletion api/routers/metrics/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_cameras_for_areas(areas: Iterator[str]) -> Iterator[str]:
cameras = []
for area_config in config.values():
if area_config["Id"] in areas:
cameras.extend(area_config["Cameras"].split(","))
cameras.extend(area_config[CAMERAS.capitalize()].split(","))
return cameras


Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.