You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What version of Node.js are you using? Not applicable if you use the standalone version of Butler.
What command did you use to start Butler?
What operating system are you using?
What CPU architecture are you using?
What Qlik Sense versions are you using?
Describe the Bug
Dry run enabled.
Not clear where "u" is used, most likely in some imported module.
2024-10-24T08:50:35.294Z info: QLIKSENSE LICENSE RELEASE PROFESSIONAL: Dry-run enabled. No licenses will be released
2024-10-24T08:50:35.320Z info: [QSEOW] INFLUXDB QLIK SENSE LICENSE STATUS: Sent aggregated Qlik Sense license status to InfluxDB
2024-10-24T08:50:35.371Z error: [QSEOW] QLIKSENSE LICENSE RELEASE: TypeError: u is not iterable
2024-10-24T08:50:35.372Z error: [QSEOW] QLIKSENSE LICENSE RELEASE: TypeError: u is not iterable
Expected Behavior
No response
To Reproduce
No response
The text was updated successfully, but these errors were encountered:
Caused by missing check if neverReleaseUsers indeed contains any data.
In qliksense_license.js around line 620
// Check do-not-release user namesfor(constuserofneverReleaseUsers){if(license.user.userDirectory===user.userDir&&license.user.userId===user.userId){doNotRelease=true;doNotReleaseReason='User is in the neverRelease.user list';break;}}
Should be
// Check do-not-release user names if there are anyif(neverReleaseUsers?.length>0){for(constuserofneverReleaseUsers){if(license.user.userDirectory===user.userDir&&license.user.userId===user.userId){doNotRelease=true;doNotReleaseReason='User is in the neverRelease.user list';break;}}}
Also do similar change before accessing neverReleaseTags, neverReleaseCustomProperties and neverReleaseUserDirectories arrays.
What version of Butler are you using?
13.1.0
What version of Node.js are you using? Not applicable if you use the standalone version of Butler.
What command did you use to start Butler?
What operating system are you using?
What CPU architecture are you using?
What Qlik Sense versions are you using?
Describe the Bug
Dry run enabled.
Not clear where "u" is used, most likely in some imported module.
Expected Behavior
No response
To Reproduce
No response
The text was updated successfully, but these errors were encountered: