FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 26f90d8f authored by Robin Goodall's avatar Robin Goodall :speech_balloon:
Browse files

fix: logging when licenses run out

parent 02ce149f
No related branches found
No related tags found
1 merge request!41fix: logging when licenses run out
Pipeline #386258 passed
......@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.1] - 2023-08-29
### Fixed
- Error handling when there are insufficient licences to assign
## [1.0.0] - 2023-06-22
### Changed
......
......@@ -179,7 +179,7 @@ class GAPIUpdater(ConfigurationStateConsumer):
if skuId is None:
LOG.warning(
"No more available licences to allocate missing licenses for %d user(s)",
len(self.state.licences_to_add - index),
len(self.state.licences_to_add) - index,
)
return
LOG.info('Adding licence to user: "%s" (%s)', uid, skuId)
......
......@@ -16,7 +16,7 @@ def load_requirements():
setup(
name="gsuitesync",
version="1.0.0",
version="1.0.1",
packages=find_packages(),
install_requires=load_requirements(),
entry_points={
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment