Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix #1252 - deprecate otumat
  • Loading branch information
dimitri-yatsenko committed Jul 29, 2025
commit 24bacc8ab2b0c7db166da3c5f5583b9b17bdecd3
25 changes: 13 additions & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
}
{
"name": "Debug pytest test",
"type": "python",
"request": "launch",
"module": "pytest",
"args": [
"tests/", // Replace with your actual test folder or file
"-s"
],
"console": "integratedTerminal",
"justMyCode": false
}
]
}
}
1 change: 1 addition & 0 deletions datajoint/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ def __init__(self, host, user, password, port=None, init_fun=None, use_tls=None)
self.init_fun = init_fun
self._conn = None
self._query_cache = None
self.connect()
if self.is_connected:
logger.info(
"DataJoint {version} connected to {user}@{host}:{port}".format(
Expand Down
Loading