Skip to content

Commit 06cbe92

Browse files
committed
Fix compilation errors in debugging code
1 parent 688c31c commit 06cbe92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opamp-client/src/test/java/io/opentelemetry/opamp/client/internal/impl/OpampClientImplTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ private RecordedRequest takeRequest() {
509509
System.out.println("[DEBUG] Taking request from server - Thread: " + Thread.currentThread().getName());
510510
RecordedRequest request = server.takeRequest(5, TimeUnit.SECONDS); // Increased timeout
511511
System.out.println("[DEBUG] Request taken: " + (request != null ?
512-
"SUCCESS - Method: " + request.getMethod() + ", URL: " + request.getRequestUrl() : "TIMEOUT"));
512+
"SUCCESS - Method: " + request.getMethod() : "TIMEOUT"));
513513
return request;
514514
} catch (InterruptedException e) {
515515
System.out.println("[DEBUG] takeRequest interrupted: " + e.getMessage());

0 commit comments

Comments
 (0)