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
I know this has already been asked but can the hostname length be increased? We are seeing truncation at 12 characters. Can the >= 12 at least be changed to > 12?
# Truncates the length of `:vm_hostname` to 12 characters for
# Windows-based operating systems.
#
# @api private
def finalize_vm_hostname!
string = config[:vm_hostname]
if windows_os? && string.is_a?(String) && string.size >= 12
config[:vm_hostname] = "#{string[0...10]}-#{string[-1]}"
end
end
Thanks
Matt
The text was updated successfully, but these errors were encountered:
We base a lot of builds off of the hostname. I know that isn't the best idea but at the moment, its what we got. Each character specifies where and what it is. All lower level environment boxes are exactly 12 characters.
I know this has already been asked but can the hostname length be increased? We are seeing truncation at 12 characters. Can the >= 12 at least be changed to > 12?
Thanks
Matt
The text was updated successfully, but these errors were encountered: