Skip to content

Commit 2d755e3

Browse files
committed
Rename more tappd in comments to guest agent
1 parent 2f2bab8 commit 2d755e3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

gateway/rpc/proto/gateway_rpc.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ message WireGuardConfig {
3535
repeated WireGuardPeer servers = 2;
3636
}
3737

38-
// GuestAgentConfig is the configuration of the Tappd.
38+
// GuestAgentConfig is the configuration of the guest agent.
3939
message GuestAgentConfig {
40-
// The external port of the Tappd.
40+
// The external port of the guest agent.
4141
uint32 external_port = 1;
42-
// The in CVM port of the Tappd.
42+
// The in CVM port of the guest agent.
4343
uint32 internal_port = 2;
44-
// The domain of the Tappd.
44+
// The domain of the guest agent.
4545
string domain = 3;
4646
}
4747

vmm/rpc/proto/vmm_rpc.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ message VmInfo {
1313
string status = 3;
1414
// Uptime in human-readable format
1515
string uptime = 4;
16-
// URL to the Tappd console
16+
// URL to the guest agent dashboard
1717
optional string app_url = 5;
1818
// App ID
1919
string app_id = 6;

vmm/src/console.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1723,7 +1723,7 @@ <h3>Derive VM</h3>
17231723
if (vm.app_url) {
17241724
window.open(vm.app_url, '_blank');
17251725
} else {
1726-
alert('No Tappd URL');
1726+
alert('No guest agent dashboard URL');
17271727
}
17281728
};
17291729

0 commit comments

Comments
 (0)