-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
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
Issue799 #800
Issue799 #800
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stray commit should be removed (and I think is not helpful anyway).
Yes, it might make sense to remove minimal-server
. Worth polling some users.
tiled/catalog/adapter.py
Outdated
@@ -1330,6 +1330,7 @@ def in_memory( | |||
access_policy=access_policy, | |||
writable_storage=writable_storage, | |||
readable_storage=readable_storage, | |||
init_if_not_exists=True, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not necessary. When the database is in memory, the tables are always initialized because by definition this is a new database in process memory. This keyword argument has the effect of spawning a subprocess to initialize a database, which cannot help in this case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed. Oops.
1bcd028
to
f95bb44
Compare
852ef91
to
471ee46
Compare
Checklist
Fixes #799
Add a check for the
openpyxcl
module when importing the excel serializer.This was found when trying to run the
tiled[minimal-server]
installation. A true test of this would involve creating an environment with just this setup. I think this is something that pixi makes easier, but would be a big change to current CI.A valid question might be: is
minimal-server
ever used and could it be excised?