Skip to content

Commit

Permalink
Update pkg/actions/lua/lakefs/catalogexport/table_extractor.lua
Browse files Browse the repository at this point in the history
Co-authored-by: isan_rivkin <isanrivkin@gmail.com>
  • Loading branch information
N-o-Z and Isan-Rivkin authored Feb 13, 2024
1 parent 672b289 commit d095399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/actions/lua/lakefs/catalogexport/table_extractor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ end
local function get_table_descriptor(client, repo_id, commit_id, logical_path)
local code, content = client.get_object(repo_id, commit_id, logical_path)
if code ~= 200 then
error("could not fetch data file: HTTP " .. tostring(code) ", path: ", logical_path)
error("could not fetch data file: HTTP " .. tostring(code) , "path: ", logical_path)
end
local descriptor = yaml.unmarshal(content)
descriptor.partition_columns = descriptor.partition_columns or {}
Expand Down

0 comments on commit d095399

Please sign in to comment.