-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allowing multiple worker applications (issue #816). #817
Allowing multiple worker applications (issue #816). #817
Conversation
@@ -109,7 +114,7 @@ def __exit__(self, type, value, traceback): | |||
def _maintenance_routine(self, silent=False): | |||
try: | |||
if not os.path.isdir(self.path): | |||
os.makedirs(self.path) | |||
os.makedirs(self.path, exist_ok=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you put a comment explaining the reasoning for this? (raise condition when os.makedirs
is called after the if
check passes but the file was already created by another worker).
@@ -5,6 +5,11 @@ | |||
|
|||
from opencensus.common.schedule import PeriodicTask | |||
|
|||
try: | |||
from pathlib import Path |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need to import Path
? I don't see it being used in the logic?
Address [#816] |
Closing due to workaround. |
Add
exist_ok=True
toopencensus-ext-azure.ext.azure.common.storage._maintenance_routine
to avoid raisingFileExistsError
if the target directory already exists, which is the default behavior (exist_ok=False). This behavior (exist_ok=False
) do not allow multiple worker applications (such as uvicorn) to performrun
.