-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed as not planned
Labels
FrozenDueToAgeNeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Description
What version of Go are you using (go version)?
1.19.1
Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (go env)?
docker golang:1.19.1-bullseye
What did you do?
https://go.dev/play/p/3IiIaz4JUVV
package main
import (
"fmt"
"time"
)
func main() {
location, err := time.LoadLocation("Europe/Kyiv")
if err != nil {
panic(err)
}
fmt.Println(location)
}What did you expect to see?
No errors. Valid timezone.
What did you see instead?
unknown time zone Europe/Kyiv
Comments?
After you add Europe/Kyiv, please do not remove the old spelling (Europe/Kiev), as we have a lot of timezone locations saved as strings in our db and hope to be backwards compatible with them.
Metadata
Metadata
Assignees
Labels
FrozenDueToAgeNeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.