Skip to content

Commit

Permalink
[API] Fix access of deprecated schema (#3664)
Browse files Browse the repository at this point in the history
  • Loading branch information
alonmr committed May 30, 2023
1 parent aad5b69 commit 123d88c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mlrun/api/crud/runtimes/nuclio/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

import mlrun
import mlrun.api.crud.runtimes.nuclio.helpers
import mlrun.api.schemas
import mlrun.api.utils.builder
import mlrun.api.utils.singletons.k8s
import mlrun.common.schemas
import mlrun.datastore
import mlrun.errors
import mlrun.runtimes.function
Expand All @@ -35,7 +35,7 @@

def deploy_nuclio_function(
function: mlrun.runtimes.function.RemoteRuntime,
auth_info: mlrun.api.schemas.AuthInfo = None,
auth_info: mlrun.common.schemas.AuthInfo = None,
client_version: str = None,
builder_env: dict = None,
client_python_version: str = None,
Expand Down Expand Up @@ -120,7 +120,7 @@ def get_nuclio_deploy_status(
last_log_timestamp=0,
verbose=False,
resolve_address=True,
auth_info: mlrun.api.schemas.AuthInfo = None,
auth_info: mlrun.common.schemas.AuthInfo = None,
):
"""
Get nuclio function deploy status
Expand Down

0 comments on commit 123d88c

Please sign in to comment.