Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Less mongo connections #187

Merged
merged 4 commits into from
Sep 8, 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
9 changes: 8 additions & 1 deletion avalon/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"""

from . import schema

from . mongodb import (
AvalonMongoDB,
session_data_from_environment
)
from .pipeline import (
install,
uninstall,
Expand Down Expand Up @@ -71,6 +74,9 @@


__all__ = [
"AvalonMongoDB",
"session_data_from_environment",

"install",
"uninstall",

Expand Down Expand Up @@ -117,6 +123,7 @@
"deregister_plugin_path",

"HOST_WORKFILE_EXTENSIONS",
"should_start_last_workfile",
"format_template_with_optional_keys",
"last_workfile_with_version",
"last_workfile",
Expand Down
Loading