Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PyBusMap
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
PyBusMap
Commits
8992e991
Commit
8992e991
authored
8 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Shorter default lock wait for vehicle_locations
parent
fadb65a7
No related branches found
Branches containing commit
No related tags found
1 merge request
!1
Implemented Embed-code generator interface
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nextbus.py
+4
-2
4 additions, 2 deletions
nextbus.py
with
4 additions
and
2 deletions
nextbus.py
+
4
−
2
View file @
8992e991
...
...
@@ -366,13 +366,15 @@ class Nextbus():
return
predictions
@classmethod
def
get_vehicle_locations
(
cls
,
agency_tags
,
truncate
=
True
):
def
get_vehicle_locations
(
cls
,
agency_tags
,
truncate
=
True
,
max_wait
=
10
):
"""
Get vehicle GPS locations
"""
if
not
agency_tags
:
return
[]
with
Lock
(
"
agencies
"
,
shared
=
True
),
Lock
(
"
routes
"
,
shared
=
True
),
Lock
(
"
vehicle_locations
"
):
with
Lock
(
"
agencies
"
,
shared
=
True
,
timeout
=
max_wait
),
\
Lock
(
"
routes
"
,
shared
=
True
,
timeout
=
max_wait
),
\
Lock
(
"
vehicle_locations
"
,
timeout
=
max_wait
):
db
.
session
.
begin
()
routes
=
db
.
session
.
query
(
Route
).
join
(
Agency
)
\
.
options
(
joinedload
(
'
directions
'
))
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment