Browse Source

"main thread" not "main call"

pull/12/head
Ross McFarland 9 years ago
parent
commit
599605f0b2
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      octodns/manager.py

+ 4
- 4
octodns/manager.py View File

@ -39,10 +39,10 @@ class _AggregateTarget(object):
class MainThreadExecutor(object):
'''
Dummy executor that runs things on the main call during the involcation of
submit, but still returns a future object with the result. This allows code
to be written to handle async, even in the case where we don't want to use
multiple threads/workers and would prefer that things flow as if
Dummy executor that runs things on the main thread during the involcation
of submit, but still returns a future object with the result. This allows
code to be written to handle async, even in the case where we don't want to
use multiple threads/workers and would prefer that things flow as if
traditionally written.
'''


Loading…
Cancel
Save