Schema version quoting issue?
Closed this issue · 3 comments
rchekaluk commented
This error from qbxml looks fishy:
invalid version '7.0' for schema qb, must be one of [\"2.0\", \"CA3.0\", \"3.0\", \"4.0\", \"4.1\", \"5.0\", \"6.0\", \"7.0\", \"8.0\", \"10.0\", \"11.0\", \"12.0\", \"13.0\"]
JasonBarnabe commented
Are you specifying a number or a string?
rchekaluk commented
This assignment from config/initializers/qbwc.rb is apparently sending a Float into qbxml:
c.min_version = 7.0
Changing it to a string works around and prevents this error, though it still seems that qbxml should be able to handle a Float.
JasonBarnabe commented
Yeah, I agree.