This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: spark roll back scheduling disable (#653)
* disable offlining on node * disable scheduling_target in config, cli, and sdk * remove schedluing target function * formatting * remove alway none return value
- Loading branch information
Showing
13 changed files
with
69 additions
and
68 deletions.
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 |
---|---|---|
@@ -1,22 +1,18 @@ | ||
from .application_log import ApplicationLog | ||
from .cluster import Cluster | ||
from .cluster_configuration import ClusterConfiguration | ||
from .custom_script import CustomScript | ||
from .file_share import FileShare | ||
from .toolkit import TOOLKIT_MAP, Toolkit | ||
from .user_configuration import UserConfiguration | ||
from .secrets_configuration import ( | ||
SecretsConfiguration, | ||
ServicePrincipalConfiguration, | ||
SharedKeyConfiguration, | ||
DockerConfiguration, | ||
) | ||
from .file import File | ||
from .file_share import FileShare | ||
from .node_output import NodeOutput | ||
from .plugins import * | ||
# from .scheduling_target import SchedulingTarget | ||
from .port_forward_specification import PortForwardingSpecification | ||
from .remote_login import RemoteLogin | ||
from .secrets_configuration import (DockerConfiguration, SecretsConfiguration, ServicePrincipalConfiguration, | ||
SharedKeyConfiguration) | ||
from .software import Software | ||
from .ssh_log import SSHLog | ||
from .toolkit import TOOLKIT_MAP, Toolkit | ||
from .user_configuration import UserConfiguration | ||
from .vm_image import VmImage | ||
from .node_output import NodeOutput | ||
from .software import Software | ||
from .cluster import Cluster | ||
from .scheduling_target import SchedulingTarget | ||
from .port_forward_specification import PortForwardingSpecification | ||
from .application_log import ApplicationLog | ||
from .plugins import * |
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
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
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
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
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
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
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
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
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
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
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
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