Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Feature: remove custom scripts (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
jafreck authored Oct 24, 2018
1 parent fc50536 commit 9e32b4b
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 18 deletions.
4 changes: 0 additions & 4 deletions aztk/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ class MissingRequiredAttributeError(InvalidModelError):
pass


class InvalidCustomScriptError(InvalidModelError):
pass


class InvalidPluginReferenceError(InvalidModelError):
pass

Expand Down
1 change: 0 additions & 1 deletion aztk/internal/cluster_data/node_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import yaml

from aztk import models
from aztk.error import InvalidCustomScriptError
from aztk.utils import constants, file_utils, secure_utils

ROOT_PATH = constants.ROOT_PATH
Expand Down
1 change: 0 additions & 1 deletion aztk/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from .application_log import ApplicationLog
from .cluster import Cluster
from .cluster_configuration import ClusterConfiguration
from .custom_script import CustomScript
from .file import File
from .file_share import FileShare
from .node_output import NodeOutput
Expand Down
1 change: 0 additions & 1 deletion aztk/models/cluster_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from aztk.core.models import Model, fields
from aztk.utils import helpers

from .custom_script import CustomScript
from .file_share import FileShare
from .plugins import PluginConfiguration
from .scheduling_target import SchedulingTarget
Expand Down
7 changes: 0 additions & 7 deletions aztk/models/custom_script.py

This file was deleted.

4 changes: 0 additions & 4 deletions aztk/spark/models/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ def __generate_ssh_key_pair(self):
return {"pub_key": pub_key, "priv_key": priv_key}


class CustomScript(aztk.models.CustomScript):
pass


class FileShare(aztk.models.FileShare):
pass

Expand Down

0 comments on commit 9e32b4b

Please sign in to comment.