Skip to content

Commit

Permalink
Rename param and description to proper value (#1486)
Browse files Browse the repository at this point in the history
  • Loading branch information
steverao authored Oct 4, 2024
1 parent 71ea1d5 commit a0d3e68
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,18 +326,19 @@ public boolean onActivation(Span activeSpan, @Nullable Span previouslyActive) {
* <p>This and {@link #onActivation} are the only methods which are executed in a multi-threaded
* context.
*
* @param activeSpan the span which is about to be activated
* @param deactivatedSpan the span which is about to be deactivated
* @param previouslyActive the span which has previously been activated
* @return {@code true}, if the event could be processed, {@code false} if the internal event
* queue is full which means the event has been discarded
*/
public boolean onDeactivation(Span activeSpan, @Nullable Span previouslyActive) {
public boolean onDeactivation(Span deactivatedSpan, @Nullable Span previouslyActive) {
if (profilingSessionOngoing) {
if (previouslyActive == null) {
profiler.removeThread(Thread.currentThread());
}
boolean success =
eventBuffer.tryPublishEvent(deactivationEventTranslator, activeSpan, previouslyActive);
eventBuffer.tryPublishEvent(
deactivationEventTranslator, deactivatedSpan, previouslyActive);
if (!success) {
logger.fine("Could not add deactivation event to ring buffer as no slots are available");
}
Expand Down

0 comments on commit a0d3e68

Please sign in to comment.