Map Rendering broken #1148
LorenzBuehmann
started this conversation in
General
Replies: 1 comment 1 reply
-
@LorenzBuehmann Thanks for the feedback! @1: We had an involuntarily denial-of-service attack by one of our own students :-) it's fixed now and https://qlever.cs.uni-freiburg.de/osm-planet is up again. @2: The Map view currently doesn't work for |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi devs,
currently I can see 2 issues on the public demos:
The original query is
which returns a result but the Map View fails with
so it looks like the widget seems to always append a closing
}
to the query which indeed results in invalid syntax error when querying QLever (or any other triple store).Also, removing the
LIMIT 10
from the query makes the widget to append the}
and then in addition append the max value for Integer:so it sends
}} LIMIT 18446744073709551615
to the QLever endpoint. ThatLIMIT
with2^64-1
looks rather redundant to me by the way.I think the error is the same for both queries in rewriting the query somehow. Did you change the code recently, it was working before for me for sure?
Beta Was this translation helpful? Give feedback.
All reactions