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
Describe the bug
The username generated for WIMS (quser) currently uses the <first letter of the first name><last name> format, which can produce a quser with less than 4 characters if the last name is short. This results in WIMS responding with:
login name must not be <quser> (illegal, or wrong length)
Expected behavior
This problem can be solved by appending a 0-padded 1 at the end of the quser so that it reaches 4 characters. For instance ab -> ab01.
The text was updated successfully, but these errors were encountered:
Describe the bug
The username generated for WIMS (
quser
) currently uses the<first letter of the first name><last name>
format, which can produce aquser
with less than 4 characters if the last name is short. This results in WIMS responding with:login name must not be <quser> (illegal, or wrong length)
Expected behavior
This problem can be solved by appending a 0-padded
1
at the end of thequser
so that it reaches 4 characters. For instanceab
->ab01
.The text was updated successfully, but these errors were encountered: