chore: add `toString` implementation for `StorageID` (#13318)
This commit is contained in:
parent
47ce2720b9
commit
39508f81c8
|
|
@ -32,6 +32,8 @@
|
|||
* Enhance the stability of e2e PHP tests and update the PHP agent version.
|
||||
* Add component ID for the `dameng` JDBC driver.
|
||||
* BanyanDB: Support custom `TopN pre-aggregation` rules configuration in file `bydb-topn.yml`.
|
||||
* refactor: implement OTEL handler with SPI for extensibility.
|
||||
* chore: add `toString` implementation for `StorageID`.
|
||||
|
||||
#### UI
|
||||
|
||||
|
|
@ -43,7 +45,6 @@
|
|||
* Implement the Status API on Settings page.
|
||||
* Bump vite from 6.2.6 to 6.3.4.
|
||||
* Enhance async profiling by adding shorter and custom duration options.
|
||||
* refactor: implement OTEL handler with SPI for extensibility.
|
||||
|
||||
#### Documentation
|
||||
|
||||
|
|
|
|||
|
|
@ -129,6 +129,11 @@ public class StorageID {
|
|||
return Collections.unmodifiableList(fragments);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return build();
|
||||
}
|
||||
|
||||
@RequiredArgsConstructor
|
||||
@Getter
|
||||
@EqualsAndHashCode(of = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue