exasol/bucketfs-java

"null/default" in log message

AnastasiiaSergienko opened this issue · 0 comments

Problem

I think this log message is weird:

INFO: Uploading "file postgresql.jar" to bucket "null/default": "http://localhost:32770/default/postgresql.jar"

Points to fix:

  1. "file postgresql.jar" - > file "postgresql.jar"
  2. null/default -> default

I'm not sure where the null comes from. I create an object like this and it works fine:

   final WriteEnabledBucket bucket = WriteEnabledBucket.builder()//
                .ipAddress("localhost") //
                .httpPort(32770) //
                .name("default") //
                .writePassword("password") //
                .build();