Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Tackle "plan not found" issues #450

Merged
merged 16 commits into from
Mar 3, 2023
Next Next commit
fix issue with EX_NOTFOUND
  • Loading branch information
rui1610 committed Mar 3, 2023
commit 818f54b278cd6292a0b29638e8a821adaef52c46
2 changes: 1 addition & 1 deletion libs/python/btp_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1961,7 +1961,7 @@ def track_creation_of_subscriptions_and_services(btpUsecase: BTPUSECASE):
log.error(
"Could not get all services and/or app subscriptions up and running. Sorry."
)
sys.exit(os.EX_NOTFOUND)
sys.exit(os.EX_DATAERR)


def addCreatedServicesToMetadata(btpUsecase: BTPUSECASE):
Expand Down