Message from discussion
rake db:migrate error
Received: by 10.58.66.199 with SMTP id h7mr526843vet.12.1351858965583;
Fri, 02 Nov 2012 05:22:45 -0700 (PDT)
X-BeenThere: gitorious@googlegroups.com
Received: by 10.52.141.116 with SMTP id rn20ls3364798vdb.5.gmail; Fri, 02 Nov
2012 05:22:44 -0700 (PDT)
Received: by 10.58.69.116 with SMTP id d20mr539000veu.15.1351858964415;
Fri, 02 Nov 2012 05:22:44 -0700 (PDT)
Received: by 10.58.69.116 with SMTP id d20mr538998veu.15.1351858964390;
Fri, 02 Nov 2012 05:22:44 -0700 (PDT)
Return-Path: <sallend...@gmail.com>
Received: from mail-vb0-f42.google.com (mail-vb0-f42.google.com [209.85.212.42])
by gmr-mx.google.com with ESMTPS id es5si1262344vdb.2.2012.11.02.05.22.44
(version=TLSv1/SSLv3 cipher=OTHER);
Fri, 02 Nov 2012 05:22:44 -0700 (PDT)
Received-SPF: pass (google.com: domain of sallend...@gmail.com designates 209.85.212.42 as permitted sender) client-ip=209.85.212.42;
Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of sallend...@gmail.com designates 209.85.212.42 as permitted sender) smtp.mail=sallend...@gmail.com; dkim=pass header...@gmail.com
Received: by mail-vb0-f42.google.com with SMTP id fs19so7879484vbb.1
for <gitorious@googlegroups.com>; Fri, 02 Nov 2012 05:22:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=20120113;
h=mime-version:sender:in-reply-to:references:date
:x-google-sender-auth:message-id:subject:from:to:content-type;
bh=vnD/QayZt28GH5LdYuujkWtIHTyrwTBs9KLd7Otr6TQ=;
b=cDT2nQkPWgx/Gya4yILMXni/dyz754eL2vXlBJNEOIXEJDL7euykmuBmaN6EGagk3r
u1T8N9aQ06kSCFiC5viWL3lBylQlI/nA2H6vgynmpX32XU4MpT5ZJRLdjYp4LXzCFIpo
1tUjA/3MN5bz3QfK90em+LWkK0jRQRIGtBw9+0hTRJ1yhjUsbPo5s5EYg4sTwkiP7uW3
cpPe8WZ6Bvq6Ub4IF/N5KGL54dm6yZc+BeijV1ppazggbOSmZsOe0gM1xnYCVw8uLR9F
OuYC7pnro3EQEdOQrJbeEAG3UgvOXwGme6krAOYtPAaPLZtaYr18ST/oeN/kF1yvjpli
8kRQ==
MIME-Version: 1.0
Received: by 10.52.100.5 with SMTP id eu5mr1419934vdb.34.1351858964078; Fri,
02 Nov 2012 05:22:44 -0700 (PDT)
Sender: sallend...@gmail.com
Received: by 10.58.2.199 with HTTP; Fri, 2 Nov 2012 05:22:44 -0700 (PDT)
In-Reply-To: <50913840.5000...@gitorious.com>
References: <442e7a21-135f-41b1-8919-66a8b4dcd8d4@googlegroups.com>
<A612847CFE53224C91B23E3A5B48BAC755FA2B1...@xmail3.se.axis.com>
<50913840.5000...@gitorious.com>
Date: Fri, 2 Nov 2012 07:22:44 -0500
Message-ID: <CAHORpf7=mpCHDjHDqcvV4jm+VmxBygCjeDqm4Tjc8E6ZK+D...@mail.gmail.com>
Subject: Re: [gitorious] rake db:migrate error
From: Scott Allen <sallend...@yahoo.com>
To: gitorious@googlegroups.com
Content-Type: multipart/alternative; boundary=20cf3071cf9a571f7504cd82319b
--20cf3071cf9a571f7504cd82319b
Content-Type: text/plain; charset=ISO-8859-1
Had this same issue during our upgrades last week, but we also had the
following:
$ rake db:migrate
(in /var/www/vmubuntu09.tif.ti.com/gitorious)
== AddSuspendedAtToProjects: migrating
=======================================
-- add_column(:projects, :suspended_at, :datetime, {:default=>nil})
rake aborted!
An error has occurred, all later migrations canceled:
Mysql::Error: Duplicate column name 'suspended_at': ALTER TABLE `projects`
ADD `suspended_at` datetime DEFAULT NULL
(See full trace by running task with --trace)
The work around was to ignore this specific patch, anyone else see this
issue.
$ mv db/migrate/20110223130355_add_suspended_at_to_projects.rb
db/migrate/.20110223130355_add_suspended_at_to_projects.rb.bak
-scott
On Wed, Oct 31, 2012 at 9:40 AM, Thomas Kjeldahl Nilsson <
tho...@gitorious.com> wrote:
> Hi again,
>
> we were finally able to reproduce on our end, and have pushed a minor
> version/hotfix for the issue.
>
>
> http://blog.gitorious.org/2012/10/31/gitorious-2-3-2-released-small-hotfix-for-installationdb-setup-issue/
>
> Peter: I'm closing your merge request as we found a simpler/more direct
> way of fixing the problem in the migration.
>
> Both of you: Let us know if you have any further issues related to this.
> This one was a bit tricky since we haven't seen the issue locally in our
> own installations up till now.
>
> Lesson learned on our part: using Rails model classes in migrations is
> brittle, so prefer to manipulate columns/tables directly instead.
>
>
> cheers,
> Thomas
>
>
> On 10/30/2012 09:18 PM, Peter Kjellerstedt wrote:
>
> I stumbled upon the same problem the other day when I migrated our
> server. I have created a merge request
> https://gitorious.org/gitorious/mainline/merge_requests/220 that should
> fix the migration (once the MR is completely created, which is taking
> unusually long...) Otherwise you can find the actual change in my clone of
> Gitorious here:
> https://gitorious.org/~saur/gitorious/saurs-mainline/commit/edaebc8129c851b574573041a1e6817c61c1f0b2
> ****
>
> ** **
>
> The problem for you, however, is that you will have to revert the part of
> the failed migration that actually took place before you can apply the
> corrected version (unless you can revert using backups). You will have to
> remove the content_type column from the project_memberships table.****
>
> ** **
>
> //Peter****
>
> ** **
>
> *From:* gitorious@googlegroups.com [mailto:gitorious@googlegroups.com<gitorious@googlegroups.com>]
> *On Behalf Of *Rodrig Lima
> *Sent:* 30 October 2012 14:03
> *To:* gitorious@googlegroups.com
> *Subject:* [gitorious] rake db:migrate error****
>
> ** **
>
> Hi all,****
>
> ** **
>
> This is my error:****
>
> ** **
>
> git@maverick:~$ pwd****
>
> /var/www/gitorious****
>
> git@maverick:~$ bundle exec rake db:migrate****
>
> .****
>
> .****
>
> .****
>
> == AddProjectMemberships: migrating
> ==========================================****
>
> -- create_table(:project_memberships)****
>
> -> 0.0043s****
>
> -- add_index(:project_memberships, [:project_id, :member_id,
> :member_type], {:name=>"project_memberships_index"})****
>
> -> 0.0062s****
>
> == AddProjectMemberships: migrated (0.0110s)
> =================================****
>
> ** **
>
> == MakeProjectMembershipPolymorphicOnSubject: migrating
> ======================****
>
> -- add_column(:project_memberships, :content_type, :string)****
>
> -> 0.0062s****
>
> rake aborted!****
>
> An error has occurred, all later migrations canceled:****
>
> ** **
>
> Mysql::Error: Table 'gitorious_production.content_memberships' doesn't
> exist: SELECT * FROM `content_memberships` ****
>
> ** **
>
> (See full trace by running task with --trace)****
>
> =======================================================****
>
> ** **
>
> *with --trace*****
>
> ** **
>
> *git@maverick:~$ bundle exec rake db:migrate --trace*
>
> *(in /var/www/gitorious)*
>
> *** Invoke db:migrate (first_time)*
>
> *** Invoke environment (first_time)*
>
> *** Execute environment*
>
> *** Execute db:migrate*
>
> *== MakeProjectMembershipPolymorphicOnSubject: migrating
> ======================*
>
> *-- add_column(:project_memberships, :content_type, :string)*
>
> *rake aborted!*
>
> *An error has occurred, all later migrations canceled:*
>
> * *
>
> *Mysql::Error: Duplicate column name 'content_type': ALTER TABLE
> `project_memberships` ADD `content_type` varchar(255)*
>
> * *
>
> ** **
>
> I'm following this steps:
> http://gitorious.org/gitorious/pages/DebianSqueezeInstallation****
>
> ** **
>
> ** **
>
> How can I fix it?****
>
> --
> To post to this group, send email to gitorious@googlegroups.com
> To unsubscribe from this group, send email to
> gitorious+unsubscribe@googlegroups.com****
> --
> To post to this group, send email to gitorious@googlegroups.com
> To unsubscribe from this group, send email to
> gitorious+unsubscribe@googlegroups.com
>
>
>
> --
> best regards,
> Thomas Kjeldahl Nilssonhttp://gitorious.com
>
> --
> To post to this group, send email to gitorious@googlegroups.com
> To unsubscribe from this group, send email to
> gitorious+unsubscribe@googlegroups.com
>
--20cf3071cf9a571f7504cd82319b
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
<div>Had this same issue during our upgrades last week, but we also had the=
following:</div><div><br></div><div><p class=3D"MsoNormal">$ rake db:migra=
te</p>
<p class=3D"MsoNormal">(in /var/www/<a href=3D"http://vmubuntu09.tif.ti.com=
/gitorious">vmubuntu09.tif.ti.com/gitorious</a>)</p>
<p class=3D"MsoNormal">=3D=3D=A0 AddSuspendedAtToProjects: migrating
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D</p>
<p class=3D"MsoNormal">-- add_column(:projects, :suspended_at, :datetime,
{:default=3D>nil})</p>
<p class=3D"MsoNormal">rake aborted!</p>
<p class=3D"MsoNormal">An error has occurred, all later migrations canceled=
:</p>
<p class=3D"MsoNormal">=A0</p>
<p class=3D"MsoNormal">Mysql::Error: Duplicate column name 'suspended_a=
t': ALTER
TABLE `projects` ADD `suspended_at` datetime DEFAULT NULL</p>
<p class=3D"MsoNormal">=A0</p>
<p class=3D"MsoNormal">(See full trace by running task with --trace)</p>
<p class=3D"MsoNormal">=A0</p>
The work around was to ignore this specific patch, anyone else see this iss=
ue.</div><div><br>
<p class=3D"MsoNormal">$ mv
db/migrate/20110223130355_add_suspended_at_to_projects.rb
db/migrate/.20110223130355_add_suspended_at_to_projects.rb.bak</p></div><di=
v><br></div><div>-scott</div><br><br><div class=3D"gmail_quote">On Wed, Oct=
31, 2012 at 9:40 AM, Thomas Kjeldahl Nilsson <span dir=3D"ltr"><<a href=
=3D"mailto:tho...@gitorious.com" target=3D"_blank">tho...@gitorious.com</a>=
></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex">
=20
=20
=20
<div bgcolor=3D"#FFFFFF" text=3D"#000000">
<div>Hi again,<br>
<br>
we were finally able to reproduce on our end, and have pushed a
minor version/hotfix for the issue. <br>
<br>
=20
<a href=3D"http://blog.gitorious.org/2012/10/31/gitorious-2-3-2-relea=
sed-small-hotfix-for-installationdb-setup-issue/" target=3D"_blank">http://=
blog.gitorious.org/2012/10/31/gitorious-2-3-2-released-small-hotfix-for-ins=
tallationdb-setup-issue/</a><br>
<br>
Peter: I'm closing your merge request as we found a simpler/more
direct way of fixing the problem in the migration. <br>
<br>
Both of you: Let us know if you have any further issues related to
this. This one was a bit tricky since we haven't seen the issue
locally in our own installations up till now.<br>
<br>
Lesson learned on our part: using Rails model classes in
migrations is brittle, so prefer to manipulate columns/tables
directly instead.<div><br>
<br>
cheers,<br>
Thomas<br>
<br>
<br>
On 10/30/2012 09:18 PM, Peter Kjellerstedt wrote:<br>
</div></div><div><div>
<blockquote type=3D"cite">
=20
=20
=20
<div>
<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:=
"Calibri","sans-serif";color:#943634">I
stumbled upon the same problem the other day when I migrated
our server. I have created a merge request <a href=3D"https://g=
itorious.org/gitorious/mainline/merge_requests/220" target=3D"_blank">https=
://gitorious.org/gitorious/mainline/merge_requests/220</a>
that should fix the migration (once the MR is completely
created, which is taking unusually long...) Otherwise you
can find the actual change in my clone of Gitorious here: <a hr=
ef=3D"https://gitorious.org/%7Esaur/gitorious/saurs-mainline/commit/edaebc8=
129c851b574573041a1e6817c61c1f0b2" target=3D"_blank">https://gitorious.org/=
~saur/gitorious/saurs-mainline/commit/edaebc8129c851b574573041a1e6817c61c1f=
0b2</a>
<u></u><u></u></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:=
"Calibri","sans-serif";color:#943634"><u></u>=A0<u></u>=
</span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:=
"Calibri","sans-serif";color:#943634">The
problem for you, however, is that you will have to revert
the part of the failed migration that actually took place
before you can apply the corrected version (unless you can
revert using backups). You will have to remove the
content_type column from the project_memberships table.<u></u><=
u></u></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:=
"Calibri","sans-serif";color:#943634"><u></u>=A0<u></u>=
</span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:=
"Calibri","sans-serif";color:#943634">//Peter<u></u><u>=
</u></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:11.0pt;font-family:=
"Calibri","sans-serif";color:#943634"><u></u>=A0<u></u>=
</span></p>
<div style=3D"border:none;border-left:solid blue 1.5pt;padding:0cm =
0cm 0cm 4.0pt">
<div>
<div style=3D"border:none;border-top:solid #b5c4df 1.0pt;paddin=
g:3.0pt 0cm 0cm 0cm">
<p class=3D"MsoNormal"><b><span style=3D"font-size:10.0pt;fon=
t-family:"Tahoma","sans-serif"">From:</span></b><span s=
tyle=3D"font-size:10.0pt;font-family:"Tahoma","sans-serif&qu=
ot;">
<a href=3D"mailto:gitorious@googlegroups.com" target=3D"_=
blank">gitorious@googlegroups.com</a>
[<a href=3D"mailto:gitorious@googlegroups.com" target=3D"=
_blank">mailto:gitorious@googlegroups.com</a>] <b>On Behalf Of </b>Rodrig
Lima<br>
<b>Sent:</b> 30 October 2012 14:03<br>
<b>To:</b> <a href=3D"mailto:gitorious@googlegroups.com" =
target=3D"_blank">gitorious@googlegroups.com</a><br>
<b>Subject:</b> [gitorious] rake db:migrate error<u></u><=
u></u></span></p>
</div>
</div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
<p class=3D"MsoNormal">Hi all,<u></u><u></u></p>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<p class=3D"MsoNormal">This is my error:<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<div>
<p class=3D"MsoNormal">git@maverick:~$ pwd<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">/var/www/gitorious<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">git@maverick:~$ bundle exec rake
db:migrate<u></u><u></u></p>
</div>
</div>
<div>
<p class=3D"MsoNormal">.<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">.<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">.<u></u><u></u></p>
</div>
<div>
<div>
<p class=3D"MsoNormal">=3D=3D =A0AddProjectMemberships: migra=
ting
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<u></u=
><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">-- create_table(:project_memberships)<=
u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">=A0 =A0-> 0.0043s<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">-- add_index(:project_memberships,
[:project_id, :member_id, :member_type],
{:name=3D>"project_memberships_index"})<u></u>=
<u></u></p>
</div>
<div>
<p class=3D"MsoNormal">=A0 =A0-> 0.0062s<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">=3D=3D =A0AddProjectMemberships: migra=
ted
(0.0110s) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<p class=3D"MsoNormal">=3D=3D
=A0MakeProjectMembershipPolymorphicOnSubject: migrating
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">-- add_column(:project_memberships,
:content_type, :string)<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">=A0 =A0-> 0.0062s<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">rake aborted!<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal">An error has occurred, all later
migrations canceled:<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<p class=3D"MsoNormal">Mysql::Error: Table
'gitorious_production.content_memberships' doesn=
9;t
exist: SELECT * FROM `content_memberships`=A0<u></u><u></u>=
</p>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<p class=3D"MsoNormal">(See full trace by running task with
--trace)<u></u><u></u></p>
</div>
</div>
<div>
<p class=3D"MsoNormal">=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<p class=3D"MsoNormal"><b>with --trace</b><u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<div>
<p class=3D"MsoNormal"><b>git@maverick:~$ bundle exec rake
db:migrate --trace<u></u><u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>(in /var/www/gitorious)<u></u><u></=
u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>** Invoke db:migrate (first_time)<u=
></u><u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>** Invoke environment (first_time)<=
u></u><u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>** Execute environment<u></u><u></u=
></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>** Execute db:migrate<u></u><u></u>=
</b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>=3D=3D
=A0MakeProjectMembershipPolymorphicOnSubject: migrating
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D<u></u><u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>--
add_column(:project_memberships, :content_type,
:string)<u></u><u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>rake aborted!<u></u><u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>An error has occurred, all later
migrations canceled:<u></u><u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b><u></u>=A0<u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b>Mysql::Error: Duplicate column
name 'content_type': ALTER TABLE `project_members=
hips`
ADD `content_type` varchar(255)<u></u><u></u></b></p>
</div>
<div>
<p class=3D"MsoNormal"><b><u></u>=A0<u></u></b></p>
</div>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<p class=3D"MsoNormal">I'm following this steps:=A0<a href=
=3D"http://gitorious.org/gitorious/pages/DebianSqueezeInstallation" target=
=3D"_blank">http://gitorious.org/gitorious/pages/DebianSqueezeInstallation<=
/a><u></u><u></u></p>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<p class=3D"MsoNormal"><u></u>=A0<u></u></p>
</div>
<div>
<p class=3D"MsoNormal">How can I fix it?<u></u><u></u></p>
</div>
<p class=3D"MsoNormal">-- <br>
To post to this group, send email to <a href=3D"mailto:gitoriou=
s@googlegroups.com" target=3D"_blank">gitorious@googlegroups.com</a><br>
To unsubscribe from this group, send email to<br>
<a href=3D"mailto:gitorious+unsubscribe@googlegroups.com" targe=
t=3D"_blank">gitorious+unsubscribe@googlegroups.com</a><u></u><u></u></p>
</div>
</div>
-- <br>
To post to this group, send email to <a href=3D"mailto:gitorious@goog=
legroups.com" target=3D"_blank">gitorious@googlegroups.com</a><br>
To unsubscribe from this group, send email to<br>
<a href=3D"mailto:gitorious+unsubscribe@googlegroups.com" target=3D"_=
blank">gitorious+unsubscribe@googlegroups.com</a><br>
</blockquote>
<br>
<br>
</div></div><div><pre cols=3D"72">--=20
best regards,
Thomas Kjeldahl Nilsson
<a href=3D"http://gitorious.com" target=3D"_blank">http://gitorious.com</a>=
</pre>
</div></div>
<p></p>
-- <br><div><div>
To post to this group, send email to <a href=3D"mailto:gitorious@googlegrou=
ps.com" target=3D"_blank">gitorious@googlegroups.com</a><br>
To unsubscribe from this group, send email to<br>
<a href=3D"mailto:gitorious%2Bunsubscribe@googlegroups.com" target=3D"_blan=
k">gitorious+unsubscribe@googlegroups.com</a><br>
</div></div></blockquote></div><br>
--20cf3071cf9a571f7504cd82319b--