We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85ccb7e commit 1840e62Copy full SHA for 1840e62
rivetkit-typescript/packages/rivetkit/runtime/index.ts
@@ -143,6 +143,12 @@ export class Runtime<A extends RegistryActors> {
143
144
managerPort = await findFreePort(config.managerPort);
145
146
+ if (managerPort !== configuredManagerPort) {
147
+ logger().warn({
148
+ msg: `port ${configuredManagerPort} is in use, using ${managerPort}`,
149
+ });
150
+ }
151
+
152
logger().debug({
153
msg: "serving manager",
154
port: managerPort,
0 commit comments