wiki/amazon-ec2.md
... ...
@@ -87,13 +87,13 @@ The architecture is divided into logical tiers. These are represented by firewal
87 87
88 88
### Create a new Analytics application instance ready for production
89 89
90
-Create a new Analytics instance as described in detail here [[wiki/amazon-ec2-create-new-app-instance]]. You should use a configuration like the following. If you want to bring the code to a defined level then make sure to specify the BUILD_FROM and SERVER_STARTUP_NOTIFY variables. If you leave them empty the instance will start using a very old build.
90
+Create a new Analytics instance as described in detail here [[wiki/amazon-ec2-create-new-app-instance]]. You should use a configuration like the following. If you want to bring the code to a defined level then make sure to specify the BUILD_FROM and BUILD_COMPLETE_NOTIFY variables. If you leave them empty the instance will start using a very old build.
91 91
92 92
<pre>
93 93
BUILD_BEFORE_START=True
94 94
BUILD_FROM=master
95 95
RUN_TESTS=False
96
-SERVER_STARTUP_NOTIFY=simon.marcel.pamies@sap.com
96
+BUILD_COMPLETE_NOTIFY=simon.marcel.pamies@sap.com
97 97
SERVER_NAME=LIVE1
98 98
MEMORY=1024m
99 99
REPLICATION_HOST=172.31.25.253
... ...
@@ -110,7 +110,7 @@ REPLICATE_MASTER_QUEUE_HOST=
110 110
REPLICATE_MASTER_QUEUE_PORT=
111 111
</pre>
112 112
113
-After your instance has been started (and build and tests are through) it will be publicly reachable if you chose a port between 8090 and 8099. If you filled the SERVER_STARTUP_NOTIFY field then you will get an email once the server has been started.
113
+After your instance has been started (and build and tests are through) it will be publicly reachable if you chose a port between 8090 and 8099. If you filled the BUILD_COMPLETE_NOTIFY field then you will get an email once the server has been started.
114 114
115 115
### Testing code on a server
116 116