We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e77cca commit b993088Copy full SHA for b993088
src/apify/_actor.py
@@ -55,9 +55,6 @@
55
class _ActorType:
56
"""The class of `Actor`. Only make a new instance if you're absolutely sure you need to."""
57
58
- _apify_client: ApifyClientAsync
59
- _configuration: Configuration
60
- _is_exiting = False
61
_is_rebooting = False
62
63
def __init__(
@@ -76,6 +73,8 @@ def __init__(
76
73
be created.
77
74
configure_logging: Should the default logging configuration be configured?
78
75
"""
+ self._is_exiting = False
+
79
self._configuration = configuration or Configuration.get_global_configuration()
80
self._configure_logging = configure_logging
81
self._apify_client = self.new_client()
0 commit comments