Skip to content

Commit

Permalink
CASMCMS-5793: Update to v3 api
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Bak committed Aug 18, 2023
1 parent 2242fc4 commit ae05c4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added rotating file handler to capture output for when syslog fails
- Set connect and read timeout values for all connection objects using sessions

### Changed
- Moved to v3 CFS api

## [1.9.4] - 2023-08-10
### Changed
- RPM OS type changed to `noos`. (CASMCMS-8691)
Expand Down
4 changes: 2 additions & 2 deletions src/cfs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# MIT License
#
# (C) Copyright 2020-2022 Hewlett Packard Enterprise Development LP
# (C) Copyright 2020-2023 Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
Expand All @@ -24,7 +24,7 @@
import os
import logging

API_VERSION = 'v2'
API_VERSION = 'v3'
PROTOCOL = 'https'
API_GATEWAY_DNS_NAME = os.environ.get('API_GATEWAY_HOST', 'api-gw-service-nmn.local')
ENDPOINT = '%s://%s/apis/%s/%s' % (PROTOCOL, API_GATEWAY_DNS_NAME,
Expand Down

0 comments on commit ae05c4c

Please sign in to comment.