Skip to content

Commit

Permalink
Fixed amalgation of lua scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Nov 7, 2024
1 parent 01b86dc commit fec6805
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def get_aaf_query_loop_lua_script_generator() -> ExasolLuaScriptGenerator:
base_dir = importlib_resources.files(
constants.BASE_DIR)
constants.BASE_PACKAGE)
lua_src_dir = base_dir / "lua" / "src"
lua_source_files = [
lua_src_dir.joinpath("query_handler_runner_main.lua"),
Expand All @@ -25,7 +25,7 @@ def get_aaf_query_loop_lua_script_generator() -> ExasolLuaScriptGenerator:
"MessageExpander"
]
jinja_template_location = JinjaTemplateLocation(
package_name=constants.BASE_DIR,
package_name=constants.BASE_PACKAGE,
package_path=constants.TEMPLATES_DIR,
template_file_name=constants.LUA_SCRIPT_TEMPLATE)
generator = ExasolLuaScriptGenerator(
Expand Down

0 comments on commit fec6805

Please sign in to comment.