Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Clean heron-ui backend #3597

Merged
merged 2 commits into from
Nov 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 1 addition & 2 deletions heron/common/src/python/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@
# specific language governing permissions and limitations
# under the License.
'''common utility modules'''
__all__ = ['metrics', 'misc', 'topology', 'config', 'tracker_access',
'tuple', 'proc', 'log']
__all__ = ['proc', 'log']
3 changes: 1 addition & 2 deletions heron/instance/src/python/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@
# specific language governing permissions and limitations
# under the License.
'''common utility modules'''
__all__ = ['metrics', 'misc', 'topology', 'config', 'tracker_access',
'system_constants', 'system_config', 'tuple', 'proc', 'log']
__all__ = ['system_constants', 'system_config', 'tuple']
2 changes: 1 addition & 1 deletion heron/shell/src/python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pex_library(
),
reqs = [
"requests==2.12.3",
"tornado==4.0.2",
"tornado==4.5.3",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tornado is still needed?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

both heron-shell and heron-tracker use tornado still, this PR just removes the use of it in explorer+UI. I forgot to remove tornado from the reqs of the explorer after rebasing though

],
deps = [
"//heron/common/src/python:common-py",
Expand Down
4 changes: 2 additions & 2 deletions heron/tools/common/src/python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ package(default_visibility = ["//visibility:public"])

pex_library(
name = "tracker-py",
srcs = glob(["access/*.py"]),
srcs = glob(["clients/*.py"]),
)

pex_library(
name = "common-py",
srcs = glob(
["**/*.py"],
exclude = ["access"],
exclude = ["clients"],
exclude_directories = 1,
),
reqs = ["PyYAML==3.13"],
Expand Down
79 changes: 0 additions & 79 deletions heron/tools/common/src/python/access/fetch.py

This file was deleted.

Loading