Skip to content

Commit

Permalink
chore: internal fix
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 557297465
  • Loading branch information
yinghsienwu authored and Copybara-Service committed Aug 16, 2023
1 parent f8f2b9c commit e407519
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions google/cloud/aiplatform/constants/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

import os
from google.cloud.aiplatform import version as aiplatform_version


Expand Down Expand Up @@ -56,8 +56,8 @@
"us-west4",
}
)

API_BASE_PATH = "aiplatform.googleapis.com"
# This env variable injection is for testing, but not considered to be a public API.
API_BASE_PATH = os.environ.get("_VERTEX_API_BASE_PATH") or "aiplatform.googleapis.com"
PREDICTION_API_BASE_PATH = API_BASE_PATH

# Batch Prediction
Expand Down

0 comments on commit e407519

Please sign in to comment.