-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
combine query execution test case as they are not independent #3655
base: develop
Are you sure you want to change the base?
Conversation
|
||
cy.get('@leftPaneContainer').contains('Keine Anfragen / Formulare gefunden') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Um sicher zu gehen, dass die Anfrage wirklich gelöscht wurde
@@ -276,6 +276,8 @@ const ProjectItem = forwardRef< | |||
<IconButton | |||
icon={isShared ? faUser : faUserRegular} | |||
bare | |||
title="share" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nicht unbedingt nötig, der Browser hatte sich nur Beschwert, dass der button kein Title hatte
.map(filter -> filter.getConnector().getConcept()) | ||
.distinct() | ||
.map(Concept::getId) | ||
.collect(MoreCollectors.onlyElement()); | ||
.collect(MoreCollectors.toOptional()).orElse(null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Das hatte immer hierfür gesorgt:
WARN [2025-01-24 14:26:16,984] com.bakdata.conquery.io.jetty.NoSuchElementExceptionMapper: Uncaught NoSuchElementException
! java.util.NoSuchElementException: null
! at com.google.common.collect.MoreCollectors$ToOptionalState.getElement(MoreCollectors.java:163)
! at com.google.common.collect.MoreCollectors.lambda$static$1(MoreCollectors.java:75)
! at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:686)
! at com.bakdata.conquery.models.datasets.PreviewConfig.resolveSearchConcept(PreviewConfig.java:207)
! at com.bakdata.conquery.resources.api.ConceptsProcessor.getEntityPreviewFrontendConfig(ConceptsProcessor.java:154)
! at com.bakdata.conquery.resources.api.DatasetResource.getEntityPreviewDefaultConnectors(DatasetResource.java:39)
! at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
! at java.base/java.lang.reflect.Method.invoke(Method.java:580)
! at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52)
! at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run(AbstractJavaResourceMethodDispatcher.java:146)
! at org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(AbstractJavaResourceMethodDispatcher.java:189)
No description provided.