Skip to content

Commit

Permalink
Increased timeout time from 10 to 15 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
brianjimenez committed Jan 18, 2021
1 parent c64e12b commit 3d191b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightdock/prep/starting_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def calculate_surface_points(receptor, ligand, num_points, distance_step=0.5, is
# This is a PATCH of SHAME. This algorithm should be completely eradicated, but
# backcompatibility will be broken. I leave this message here as a promise of
# doing it much better in a new release and stop coding while I'm drunk or so...
if time.time() - start > 10*60:
if time.time() - start > 15*60:
# 10 minutes timeout
raise SetupError(f'Timeout: cannot calculate surface points ({len(surface_points)} out of {num_points})')

Expand Down

0 comments on commit 3d191b3

Please sign in to comment.