Skip to content

Commit 9974dd9

Browse files
committed
compute server: changing ephemeral always allowed
1 parent 91c6830 commit 9974dd9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/packages/server/compute/control.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -716,6 +716,10 @@ export async function makeConfigurationChange({
716716
// same comment as for authToken
717717
changed.delete("proxy");
718718
}
719+
if (changed.has("ephemeral")) {
720+
// always safe to change this -- no heck required and no impact on actual deployment
721+
changed.delete("ephemeral");
722+
}
719723
if (changed.size == 0) {
720724
// nothing else to change
721725
return;

0 commit comments

Comments
 (0)