We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38c356d commit 52ba80aCopy full SHA for 52ba80a
1 file changed
src/query_farm_server_base/server.py
@@ -376,8 +376,6 @@ def do_action(
376
action=action,
377
)
378
379
- logger.info("do_action")
380
-
381
call_context = CallContext(
382
context=context,
383
caller=caller,
@@ -439,14 +437,10 @@ def do_action(
439
437
440
438
441
elif action.type == "create_transaction":
442
- return iter(
443
- msgpack.packb(
444
- [
445
- self.action_create_transaction(
446
- context=call_context,
447
- database_name=action.body.to_pybytes().decode("utf-8"),
448
- )
449
- ]
+ return self.pack_result(
+ self.action_create_transaction(
+ context=call_context,
+ database_name=action.body.to_pybytes().decode("utf-8"),
450
451
452
elif action.type == "drop_not_null":
0 commit comments