Custom Query (1174 matches)
Results (352 - 354 of 1174)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #918 | fixed | video.js recommending Adobe Flash and Chrome in some browsers | ||
| Description |
Even though we have our own fallback message (recommending FireFox at the moment), it looks like on OSX with Safari users are seeing video.js' own recommendation, which seems to be to recommend Flash and Chrome. That is absolutely unacceptable. We need to figure out a way to prevent that recommendation. |
|||
| #919 | fixed | Do not use super(self.__class__) | ||
| Description |
Some places in the code use something like class B(A):
def __init__(self):
super(self.__class__, self).__init__()
This seems to work, until someone creates a subclass. Please fix all of those. Either use def __init__(self):
A.__init__(self)
or def __init__(self):
super(B, self).__init__()
|
|||
| #920 | fixed | Broken migration for #894 | ||
| Description |
tl;dr the index-add on User.username might be broken. If it is, this is a blocker. Intro
We used to have On most (if not all) databases, a UniqueConstraint will create an internal index, so that checking the constraint is reasonably performant. This is different from an actual index (with or without uniqueness attribute) in a concptual way. Whether this is a real difference on a database, is another story.
According to the sqlalchemy docs Situations(These are the situations I expect after reading our code and the docs.) Old schema::
Old schema + migration
New schema, when creating database anew::
As you can see, the situation with migration or building from scratch are different. How to verify
If the indexes / pg_dump differ, then something is wrong and this bug is a valid. Otherwise, I'd love to know, what's wrong with my assumptions. |
|||
