Skip to content

Commit e956817

Browse files
committed
Change default endpoint to api.unbox.ai
1 parent 3aeffbf commit e956817

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.2] - 2022-05-22
9+
10+
### Fixed
11+
12+
* Default Unbox server URL (<https://api.unbox.ai/>).
13+
814
## [0.1.1] - 2022-05-22
915

1016
### Added

unboxapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DeploymentType(Enum):
2828

2929

3030
# NOTE: Don't modify this unless you are deploying on-prem.
31-
DEPLOYMENT = DeploymentType.ONPREM
31+
DEPLOYMENT = DeploymentType.AWS
3232

3333

3434
class UnboxClient(object):

unboxapi/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from .exceptions import ExceptionMap, UnboxException
1111
from .version import __version__
1212

13-
# UNBOX_ENDPOINT = "https://api.unbox.ai/api"
14-
UNBOX_ENDPOINT = "http://localhost:8080/api"
13+
UNBOX_ENDPOINT = "https://api.unbox.ai/api"
14+
# UNBOX_ENDPOINT = "http://localhost:8080/api"
1515
UNBOX_STORAGE_PATH = os.path.expanduser("~/unbox/unbox-onpremise/userStorage")
1616

1717

0 commit comments

Comments
 (0)