Skip to content

Commit 212b211

Browse files
Merge branch 'main' into fixWindowsConf
2 parents 3bc1cb7 + ae7634a commit 212b211

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

roboflow/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def get_conditional_configuration_variable(key, default):
2525
conf_location = os.getenv(
2626
"ROBOFLOW_CONFIG_DIR",
2727
default=default_path,
28+
2829
)
2930

3031
# read config file for roboflow if logged in from python or CLI

roboflow/core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def deploy(self, model_type: str, model_path: str) -> None:
570570
)
571571

572572
res = requests.get(
573-
f"{API_URL}/{self.workspace}/{self.project}/{self.version}/uploadModel?api_key={self.__api_key}&modelType={model_type}"
573+
f"{API_URL}/{self.workspace}/{self.project}/{self.version}/uploadModel?api_key={self.__api_key}&modelType={model_type}&nocache=true"
574574
)
575575
try:
576576
if res.status_code == 429:

0 commit comments

Comments
 (0)