Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
fix job deployer type-o (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
iancoffey authored Jun 2, 2020
1 parent b100779 commit 1792e6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kubeflow/fairing/constants/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

# Job Constants
JOB_DEFAULT_NAME = 'fairing-job-'
JOB_DEPLOPYER_TYPE = 'job'
JOB_DEPLOYER_TYPE = 'job'

# Serving Constants
SERVING_DEPLOPYER_TYPE = 'serving'
Expand Down
2 changes: 1 addition & 1 deletion kubeflow/fairing/deployers/job/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Job(DeployerInterface): #pylint:disable=too-many-instance-attributes

def __init__(self, namespace=None, runs=1, output=None,
cleanup=True, labels=None, job_name=None,
stream_log=True, deployer_type=constants.JOB_DEPLOPYER_TYPE,
stream_log=True, deployer_type=constants.JOB_DEPLOYER_TYPE,
pod_spec_mutators=None, annotations=None, config_file=None,
context=None, client_configuration=None, persist_config=True):
"""
Expand Down

0 comments on commit 1792e6e

Please sign in to comment.