Adds Cassandra support (#1974)
Co-authored-by: Mark Paluch <mpaluch@vmware.com>
This commit is contained in:
committed by
GitHub
parent
209ce7d8ec
commit
17ba1b18d5
@@ -132,6 +132,12 @@ public interface AssertingSpan extends Span {
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
default Span remoteIpAndPort(String ip, int port) {
|
||||
getDelegate().remoteIpAndPort(ip, port);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param documentedSpan span configuration
|
||||
* @param span span to wrap in assertions
|
||||
|
||||
@@ -93,6 +93,12 @@ public interface AssertingSpanBuilder extends Span.Builder {
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
default Span.Builder remoteIpAndPort(String ip, int port) {
|
||||
getDelegate().remoteIpAndPort(ip, port);
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
default AssertingSpanBuilder setParent(TraceContext context) {
|
||||
getDelegate().setParent(context);
|
||||
|
||||
Reference in New Issue
Block a user