Skip to content

Commit

Permalink
fixup! Move ConfigException out of incluster_config and in it's own file
Browse files Browse the repository at this point in the history
  • Loading branch information
mbohlool committed Dec 1, 2016
1 parent fd51cb8 commit 478de27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions kubernetes/config/incluster_config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
import tempfile
import unittest

from .config_exception import ConfigException
from .incluster_config import (SERVICE_HOST_ENV_NAME, SERVICE_PORT_ENV_NAME,
ConfigException, InClusterConfigLoader,
_join_host_port)
InClusterConfigLoader, _join_host_port)

_TEST_TOKEN = "temp_token"
_TEST_CERT = "temp_cert"
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/config/kube_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from kubernetes.client import configuration
from oauth2client.client import GoogleCredentials

from .incluster_config import ConfigException
from .config_exception import ConfigException

_temp_files = {}

Expand Down
2 changes: 1 addition & 1 deletion kubernetes/config/kube_config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import tempfile
import unittest

from .incluster_config import ConfigException
from .config_exception import ConfigException
from .kube_config import (ConfigNode, FileOrData, KubeConfigLoader,
_create_temp_file_with_content)

Expand Down

0 comments on commit 478de27

Please sign in to comment.