Skip to content

Commit

Permalink
OAP-224 oap-storage-cloud: jclouds -> aws sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
galaxina committed Nov 27, 2024
1 parent ccdd222 commit a225a5d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ public void testLog() throws IOException {
MemoryLoggerBackend memoryLoggerBackend = new MemoryLoggerBackend();
BinaryObjectLogger binaryObjectLogger = new BinaryObjectLogger( new DictionaryRoot( "model", List.of(
new DictionaryValue( "MODEL1", true, 1, List.of(
new DictionaryLeaf( "a", true, 2, Map.of( "path", ".a", "type", "STRING", "default", "" ) ),
new DictionaryLeaf( "b", true, 2, Map.of( "path", ".b", "type", "INTEGER", "default", 123 ) ),
new DictionaryLeaf( "aaa", true, 2, Map.of( "path", ".a | default .aa", "type", "STRING", "default", "" ) ),
new DictionaryLeaf( "list", true, 2, Map.of( "path", ".data1.list | default .data2.list", "type", "STRING_ARRAY", "default", "[]" ) ),
new DictionaryLeaf( "a", true, 2, Map.of( "path", "a", "type", "STRING", "default", "" ) ),
new DictionaryLeaf( "b", true, 2, Map.of( "path", "b", "type", "INTEGER", "default", 123 ) ),
new DictionaryLeaf( "aaa", true, 2, Map.of( "path", "a | default aa", "type", "STRING", "default", "" ) ),
new DictionaryLeaf( "list", true, 2, Map.of( "path", "data1.list | default data2.list", "type", "STRING_ARRAY", "default", "[]" ) ),
new DictionaryLeaf( "x", true, 2, Map.of( "type", "INTEGER", "default", 1 ) )
) )
) ), memoryLoggerBackend, testDirectoryFixture.testPath( "tmp" ), Dates.d( 10 ) );
Expand Down

0 comments on commit a225a5d

Please sign in to comment.