-
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
Closed
renan-alonkin
wants to merge
5
commits into
census-instrumentation:master
from
renan-alonkin:issue#816
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
11f7dfd
This will allow applications with multiple workers such as uvicorn an…
renan-alonkin 629a500
Changed exists_ok to path.exists, making it compatible with python 2.x
renan-alonkin 531dd68
substitute to mkdir's exist_ok=True
renan-alonkin 9757f69
substitute to mkdir's exist_ok=True
renan-alonkin a7fa288
substitute to mkdir's exist_ok=True
renan-alonkin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,11 @@ | |
|
||
from opencensus.common.schedule import PeriodicTask | ||
|
||
try: | ||
from pathlib import Path | ||
except ImportError: | ||
from pathlib2 import Path # python 2 backport | ||
|
||
|
||
def _fmt(timestamp): | ||
return timestamp.strftime('%Y-%m-%dT%H%M%S.%f') | ||
|
@@ -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 commentThe 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 |
||
except Exception: | ||
if not silent: | ||
raise | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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?