Skip to content

Commit

Permalink
fix#582: Test case failing - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sband committed May 31, 2023
1 parent 2904523 commit 50c807f
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -544,13 +544,12 @@ public static void serialize(final ResourceConfiguration config) throws SirixIOE
// Child count.
jsonWriter.name(JSONNAMES[16]).value(config.storeChildCount);

jsonWriter.name(JSONNAMES[17]);
jsonWriter.beginObject();
jsonWriter.name(JSONNAMES[17]).beginObject();
jsonWriter.name(JSONNAMES[18]).value(config.awsStoreInfo.getAwsProfile());
jsonWriter.name(JSONNAMES[19]).value(config.awsStoreInfo.getAwsRegion());
jsonWriter.name(JSONNAMES[20]).value(config.awsStoreInfo.getBucketName());
jsonWriter.name(JSONNAMES[21]).value(config.awsStoreInfo.shouldCreateBucketIfNotExists());
jsonWriter.endObject();
jsonWriter.name(JSONNAMES[17]).endObject();

jsonWriter.endObject();
} catch (final IOException e) {
Expand Down

0 comments on commit 50c807f

Please sign in to comment.