Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
XmasApple committed Oct 10, 2023
1 parent f417a8f commit e041241
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Ydb.Sdk/tests/TableService/TestCopyTable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@ public TestCopyTable(ITestOutputHelper output)
_output = output;
var loggerFactory = Utils.GetLoggerFactory() ?? NullLoggerFactory.Instance;
_logger = loggerFactory.CreateLogger<TestCopyTable>();

var driverConfig = new DriverConfig(
endpoint: "grpc://localhost:2136",
database: "/local"
);

_logger.LogInformation("Creating Driver");
_driver = new Driver(driverConfig);
_driver.Initialize().Wait();

_logger.LogInformation("Driver created");
_tableClient = new TableClient(_driver);
_logger.LogInformation("Table client created");
}

public void Dispose()
Expand Down

0 comments on commit e041241

Please sign in to comment.