CPapadim

Results 18 comments of CPapadim

Any thoughts on adding this functionality?

Hmm poking at the script a bit more, looks like all the rl option does is to install dependencies. So if I want rule based options to be enabled, but...

Looks like the errors go away when I switch to MySQL 5.6, rather than the original 5.7 I was using. However, indexing still does not seem to take place and...

It looks like although the Lost Connection errors with `runserver` go away, they come back when I use `deploy`. I tried switching to postgres DB and I get lost connection...

I explored this some more, and it's actually a combination of minor issues and lack of documentation. 1. When using `deploy` with MySQL 5.6, indexing fails with the Lost Connection...

So, I removed MySQLdb and changed over to mysqlconnect and now deploy works but runserver has issues with the query. In addition, the code that checks if a repository is...

Next, I updated the `revision` function in dbrepository to this: ``` def revision(self): result = self.session.query(func.max(self.PostRef.updated_at)).first() self.session.commit() return str(result[0]) ``` It just adds a session.commit(), which takes care of the...

I suspect all of the issues with indexing are just improperly handled connections and different packages and databases handling different situations gracefully and others not so gracefully. Probably going through...

As far as reproducibility, I think we're not that far off. I'm also using Python 3 and AWS RDS instances - though with the exception that I'm also using an...

I tried the suggestion to put `db_session.close()` as suggested, and using the `mysqlclient` package, and I still get an error while indexing. So right now I can only get indexing...