-
Notifications
You must be signed in to change notification settings - Fork 3
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
Merge main to java-spi #114
Conversation
add pendo back
* chore: removing 'it' profile ci, parent pom and moving samples 'it' to 'test' * renaming '*IntegrationTest' to * updating docs and updating class names (updating file names wan't enough) * adding missing failsafe plugin * Update akka-javasdk-maven/akka-javasdk-parent/pom.xml Co-authored-by: Renato Cavalcanti <[email protected]> * Update akka-javasdk-maven/akka-javasdk-parent/pom.xml Co-authored-by: Renato Cavalcanti <[email protected]> * Update docs/src/modules/java/pages/event-sourced-entities.adoc Co-authored-by: Renato Cavalcanti <[email protected]> * Update docs/src/modules/java/pages/key-value-entities.adoc Co-authored-by: Renato Cavalcanti <[email protected]> * Update .github/workflows/ci.yml Co-authored-by: Renato Cavalcanti <[email protected]> * docs: add local console to getting started guide (#58) * docs: review support pages (#64) * addressing comments .+ back to IntegrationTest suffix * Revert "docs: review support pages (#64)" This reverts commit 493648d. * Revert "docs: add local console to getting started guide (#58)" This reverts commit 29311bf. * fixing import * removing snapshot version used when testing * renaming class --------- Co-authored-by: Renato Cavalcanti <[email protected]> Co-authored-by: Brent Eritou <[email protected]> Co-authored-by: Enno Runne <[email protected]>
Remove Pendo reporting from docs
@@ -167,7 +167,8 @@ class SdkRunner private (dependencyProvider: Option[DependencyProvider]) extends | |||
startContext.remoteIdentification, | |||
startContext.tracerFactory, | |||
dependencyProvider, | |||
startedPromise) | |||
startedPromise, | |||
getSettings.devMode.map(_.serviceName)) |
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.
This ...
@@ -617,7 +619,7 @@ private final class Sdk( | |||
|
|||
override val serviceInfo: SpiServiceInfo = | |||
new SpiServiceInfo( | |||
serviceName = sdkSettings.devModeSettings.map(_.serviceName).getOrElse(""), | |||
serviceName = serviceNameOverride.orElse(sdkSettings.devModeSettings.map(_.serviceName)).getOrElse(""), |
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.
... and this changed in 898ec6f#diff-26d7c802dc1ff7174ab9cbed72a852b5d31ce32af07c96b7686aa89a67fc328cR447
@efgpinto pls confirm that this is correct
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.
Yup, correct. looks good. 👍
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.
LGTM
DO NOT SQUASH