Skip to content
Snippets Groups Projects
Commit f42be921 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

(aws deploy) fix time output, change to #identity

parent 41b5d54c
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ console.log("deployment log dir is:", deployLogDir);
// irc integration!
var ircClient = null;
const ircChannel = '#identity_test';
const ircChannel = '#identity';
function ircSend(msg) {
if (!ircClient) {
ircClient = new irc.Client('irc.mozilla.org', 'browserid_deployer', {
......@@ -238,7 +238,7 @@ function closeLogFile() {
deployer.on('deployment_complete', function(r) {
ircSend("deployment of " + deployingSHA + " completed successfully in " +
(r.time / 100000.0).toFixed(2) + "s");
(r.time / 1000.0).toFixed(2) + "s");
ircDisconnect();
closeLogFile();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment