We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug:
parsing the JSON string {'boo':'moo'} causes dora process to crash due to Out of Memory Error
{'boo':'moo'}
Out of Memory Error
What version of Go are you using (go version)?
go version
go version go1.17.1 linux/amd64
To Reproduce:
Steps to reproduce the behavior.
func main(){ str := `{'boo':'moo'}` c, err := dora.NewFromString(str) if err != nil { fmt.Println(err) } }
Expected behavior:
Ideally, it should be able to parse the JSON or else throw an error saying it's unable to parse.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug:
parsing the JSON string
{'boo':'moo'}
causes dora process to crash due toOut of Memory Error
What version of Go are you using (
go version
)?To Reproduce:
Steps to reproduce the behavior.
Expected behavior:
Ideally, it should be able to parse the JSON or else throw an error saying it's unable to parse.
The text was updated successfully, but these errors were encountered: