Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
55343e0
Adding OpenTelemetry exporter code
hectorhdzg Oct 26, 2020
3590ac8
Adding OT requires
hectorhdzg Oct 26, 2020
b55b73b
Update ci.yml
rakshith91 Oct 28, 2020
5abed09
Update README.md
rakshith91 Oct 28, 2020
e9eb839
rename samples
rakshith91 Oct 29, 2020
495c119
Merge remote-tracking branch 'upstream/master' into hectorhdzg/otexpo…
hectorhdzg Nov 4, 2020
78a6953
Merge branch 'hectorhdzg/otexporter' of https://github.com/hectorhdzg…
hectorhdzg Nov 4, 2020
22026dc
Addressing comments
hectorhdzg Nov 4, 2020
fc05356
Merge remote-tracking branch 'upstream/master' into hectorhdzg/otexpo…
hectorhdzg Nov 4, 2020
a5e2b89
Updating generated client name
hectorhdzg Nov 4, 2020
e08fa26
changelog fix
rakshith91 Nov 5, 2020
bf1093b
ignore 27
rakshith91 Nov 5, 2020
51489a9
oops
rakshith91 Nov 5, 2020
549f203
3.5
rakshith91 Nov 5, 2020
6fdfb37
Update sdk/monitor/opentelemetry-exporter-azuremonitor/opentelemetry/…
rakshith91 Nov 5, 2020
1ce6bbb
Merge remote-tracking branch 'upstream/master' into hectorhdzg/otexpo…
hectorhdzg Nov 10, 2020
de56d02
Fixing lint
hectorhdzg Nov 10, 2020
1adc16c
Adding check for storage test path
hectorhdzg Nov 10, 2020
871b55e
Adding check in tearDown
hectorhdzg Nov 10, 2020
75e1912
Adding file check in tests
hectorhdzg Nov 10, 2020
11d17cb
Add check in setUp
hectorhdzg Nov 10, 2020
bd971d8
Disable put test
hectorhdzg Nov 11, 2020
c6ab18b
Adding ignore_errors = true for rmtree method
hectorhdzg Nov 11, 2020
611bb43
Merge remote-tracking branch 'upstream/master' into hectorhdzg/otexpo…
hectorhdzg Nov 11, 2020
b8a57cc
Renaming import update
hectorhdzg Nov 11, 2020
faaf083
Merge remote-tracking branch 'upstream/master' into hectorhdzg/otexpo…
hectorhdzg Nov 11, 2020
7c8bbe1
fix set up
rakshith91 Nov 11, 2020
8e2500a
Merge branch 'hectorhdzg/otexporter' of https://github.com/hectorhdzg…
hectorhdzg Nov 11, 2020
3bd0773
Updating swagger readme
hectorhdzg Nov 11, 2020
f4e9524
Adding exist_ok=True to makedirs method
hectorhdzg Nov 11, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding ignore_errors = true for rmtree method
  • Loading branch information
hectorhdzg committed Nov 11, 2020
commit c6ab18b8e2e3bb43f33fd4927f4c0e87c5f5bc48
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def setUpModule():
# pylint: disable=invalid-name
def tearDownModule():
if os.path.exists(TEST_FOLDER):
shutil.rmtree(TEST_FOLDER)
shutil.rmtree(TEST_FOLDER, True)


def throw(exc_type, *args, **kwargs):
Expand Down Expand Up @@ -61,7 +61,7 @@ def setUp(self):
if os.path.isfile(file_path) or os.path.islink(file_path):
os.unlink(file_path)
elif os.path.isdir(file_path):
shutil.rmtree(file_path)
shutil.rmtree(file_path, True)
except OSError as e:
print("Failed to delete %s. Reason: %s" % (file_path, e))
self._base.clear_telemetry_processors()
Expand Down Expand Up @@ -416,5 +416,5 @@ def test_get_metrics_export_result(self):

class MockResponse:
def __init__(self, status_code, text):
self.status_code=status_code
self.text=text
self.status_code = status_code
self.text = text
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def setUpModule():
# pylint: disable=invalid-name
def tearDownModule():
if os.path.exists(TEST_FOLDER):
shutil.rmtree(TEST_FOLDER)
shutil.rmtree(TEST_FOLDER, True)


def throw(exc_type, *args, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def setUpModule():
# pylint: disable=invalid-name
def tearDownModule():
if os.path.exists(TEST_FOLDER):
shutil.rmtree(TEST_FOLDER)
shutil.rmtree(TEST_FOLDER, True)


def throw(exc_type, *args, **kwargs):
Expand Down Expand Up @@ -64,7 +64,7 @@ def setUp(self):
if os.path.isfile(file_path) or os.path.islink(file_path):
os.unlink(file_path)
elif os.path.isdir(file_path):
shutil.rmtree(file_path)
shutil.rmtree(file_path, True)
except OSError as e:
print("Failed to delete %s. Reason: %s" % (file_path, e))

Expand Down