Skip to content

Commit

Permalink
fix typo in import
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhrathod01 committed Oct 22, 2024
1 parent a444f5f commit 7285f3f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@
import static com.appsmith.external.constants.spans.LayoutSpan.EXTRACT_AND_SET_EXECUTABLE_BINDINGS_IN_GRAPH_EDGES;
import static com.appsmith.external.constants.spans.LayoutSpan.FILTER_AND_TRANSFORM_SCHEDULING_ORDER_TO_DTO;
import static com.appsmith.external.constants.spans.LayoutSpan.RECURSIVELY_ADD_EXECUTABLES_AND_THEIR_DEPENDENTS_TO_GRAPH_FROM_BINDINGS;
import static com.appsmith.external.constants.spans.OnLoadSpan.ADD_DIRECTLY_REFERENCED_EXECUTABLES_TO_GRAPH;
import static com.appsmith.external.constants.spans.OnLoadSpan.ADD_EXPLICIT_USER_SET_ON_LOAD_EXECUTABLES_TO_GRAPH;
import static com.appsmith.external.constants.spans.OnLoadSpan.EXECUTABLE_NAME_TO_EXECUTUTABLE_MAP;
import static com.appsmith.external.constants.spans.OnLoadSpan.EXECUTABLE_NAME_TO_EXECUTABLE_MAP;
import static com.appsmith.external.constants.spans.OnLoadSpan.GET_ALL_EXECUTABLES_BY_CREATOR_ID;
import static com.appsmith.external.constants.spans.OnLoadSpan.GET_POSSIBLE_ENTITY_PARENTS_MAP;
import static com.appsmith.external.constants.spans.OnLoadSpan.GET_POSSIBLE_ENTITY_REFERENCES;
Expand Down Expand Up @@ -147,7 +148,7 @@ public Mono<List<Set<DslExecutableDTO>>> findAllOnLoadExecutables(
.toList();
})
.collectMap(Tuple2::getT1, Tuple2::getT2)
.name(EXECUTABLE_NAME_TO_EXECUTUTABLE_MAP)
.name(EXECUTABLE_NAME_TO_EXECUTABLE_MAP)
.tap(Micrometer.observation(observationRegistry))
.cache();

Expand Down

0 comments on commit 7285f3f

Please sign in to comment.