Skip to content

Commit

Permalink
Revert "Make sure that the frame dispatch returns a non-null value fo…
Browse files Browse the repository at this point in the history
…r job.str_os"

This reverts commit fda4f0d
  • Loading branch information
lithorus committed Nov 27, 2024
1 parent 21f0157 commit f1b2ad6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public DispatchFrame mapRow(ResultSet rs, int rowNum) throws SQLException {
frame.minGpuMemory = rs.getLong("int_gpu_mem_min");
frame.version = rs.getInt("int_version");
frame.services = rs.getString("str_services");
frame.os = Optional.ofNullable(rs.getString("str_os")).orElse("");
frame.os = rs.getString("str_os");
frame.lokiEnabled = rs.getBoolean("b_loki_enabled");
frame.lokiURL = rs.getString("str_loki_url");
return frame;
Expand Down

0 comments on commit f1b2ad6

Please sign in to comment.