aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@vespa.ai>2023-10-25 11:04:37 +0200
committerBjørn Christian Seime <bjorncs@vespa.ai>2023-10-25 11:04:37 +0200
commitb914d3e315a421c724f8e5d3e990c4afb86b9475 (patch)
tree7fb2deef99bdb8204920b4bce624667134f9eab0 /controller-server/src/main/java
parentb18f4727e5c4523cd8f953b48a126bf8e9c2ad99 (diff)
Make bold not emphasised
Diffstat (limited to 'controller-server/src/main/java')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/maintenance/CloudTrialExpirer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/maintenance/CloudTrialExpirer.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/maintenance/CloudTrialExpirer.java
index 6ec83921dd3..55428e80493 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/maintenance/CloudTrialExpirer.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/maintenance/CloudTrialExpirer.java
@@ -158,21 +158,21 @@ public class CloudTrialExpirer extends ControllerMaintainer {
}
private void notifyMidCheckIn(Tenant tenant) {
- var consoleMsg = "You're halfway through the *14 day* trial period. [Manage plan](%s)".formatted(billingUrl(tenant));
+ var consoleMsg = "You're halfway through the **14 day** trial period. [Manage plan](%s)".formatted(billingUrl(tenant));
queueNotification(tenant, consoleMsg, "How is your Vespa Cloud trial going?",
"How is your Vespa Cloud trial going? " +
"Please reach out to us if you have any questions or feedback.");
}
private void notifyExpiresSoon(Tenant tenant) {
- var consoleMsg = "Your Vespa Cloud trial expires in *2* days. [Manage plan](%s)".formatted(billingUrl(tenant));
+ var consoleMsg = "Your Vespa Cloud trial expires in **2** days. [Manage plan](%s)".formatted(billingUrl(tenant));
queueNotification(tenant, consoleMsg, "Your Vespa Cloud trial expires in 2 days",
"Your Vespa Cloud trial expires in 2 days. " +
"Please reach out to us if you have any questions or feedback.");
}
private void notifyExpiresImmediately(Tenant tenant) {
- var consoleMsg = "Your Vespa Cloud trial expires *tomorrow*. [Manage plan](%s)".formatted(billingUrl(tenant));
+ var consoleMsg = "Your Vespa Cloud trial expires **tomorrow**. [Manage plan](%s)".formatted(billingUrl(tenant));
queueNotification(tenant, consoleMsg, "Your Vespa Cloud trial expires tomorrow",
"Your Vespa Cloud trial expires tomorrow. " +
"Please reach out to us if you have any questions or feedback.");