Skip to content

Commit

Permalink
fix: resulttl -1 for serotype/vf
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkle committed Jun 22, 2018
1 parent a5ece76 commit 92b66e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/modules/spfy.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _ectyper_pipeline_vf(query_file, single_dict, display_vf=True, pipeline=None
query_file + '_ectyper_vf.p',
single_dict,
depends_on=job_ectyper_vf,
result_ttl=ttl_value
result_ttl=-1
)
d['job_ectyper_beautify_vf'] = job_ectyper_beautify_vf
pipeline.jobs.update({
Expand Down Expand Up @@ -201,7 +201,7 @@ def _ectyper_pipeline_serotype(query_file, single_dict, pipeline=None, backlog=F
display_subtyping,
query_file + '_ectyper_serotype.model',
depends_on=job_ectyper_serotype,
result_ttl=ttl_value
result_ttl=-1
)
d['job_ectyper_beautify_serotype'] = job_ectyper_beautify_serotype
pipeline.jobs.update({
Expand Down

0 comments on commit 92b66e0

Please sign in to comment.