Skip to content

Commit 2658ebd

Browse files
committed
typo, doc fixes
1 parent d35c8b1 commit 2658ebd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

operator-framework/src/main/java/com/github/containersolutions/operator/processing/CustomResourceEvent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public String toString() {
7070
"action=" + action +
7171
", resource=[ name=" + resource.getMetadata().getName() + ", kind=" + resource.getKind() +
7272
", apiVersion=" + resource.getApiVersion() + " ,resourceVersion=" + resource.getMetadata().getResourceVersion() +
73-
", markerForDeletion: " + (resource.getMetadata().getDeletionTimestamp() != null
73+
", markedForDeletion: " + (resource.getMetadata().getDeletionTimestamp() != null
7474
&& !resource.getMetadata().getDeletionTimestamp().isEmpty()) +
7575
" ], retriesIndex=" + retryIndex +
7676
'}';

operator-framework/src/main/java/com/github/containersolutions/operator/processing/EventScheduler.java

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
* <li> In implementation we have to lock since the fabric8 client event handling is multi-threaded, we can receive multiple events
4040
* for same resource. Also we do callback from other threads.
4141
* </li>
42-
* <li>We don't react for delete event, since we always use finalizers and do delete on marked for deletion.</li>
4342
* </ul>
4443
*/
4544

0 commit comments

Comments
 (0)