File tree 1 file changed +4
-4
lines changed
rubberduckvba.Server/ContentSynchronization/Pipeline/Sections/SyncXmldoc 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -129,8 +129,8 @@ await Task.WhenAll([
129
129
}
130
130
else
131
131
{
132
- // that's an old tag then; do not process
133
- throw new InvalidOperationException ( $ "Tag metadata mismatch, xmldoc update will not proceed; GitHub@main:{ ghMain . Name } ({ ghMain . DateCreated } ) | rubberduckdb@main: { dbMain . Name } ({ dbMain . DateCreated } )") ;
132
+ // could be an old tag, ...or the db is just out of date
133
+ Logger . LogWarning ( $ "Tag metadata mismatch, xmldoc update will not proceed; GitHub@main:{ ghMain . Name } ({ ghMain . DateCreated } ) | rubberduckdb@main: { dbMain . Name } ({ dbMain . DateCreated } )") ;
134
134
}
135
135
}
136
136
if ( ghNext . Name != dbNext . Name )
@@ -141,8 +141,8 @@ await Task.WhenAll([
141
141
}
142
142
else
143
143
{
144
- // that's an old tag then; do not process
145
- throw new InvalidOperationException ( $ "Tag metadata mismatch, xmldoc update will not proceed; GitHub@main:{ ghMain . Name } ({ ghMain . DateCreated } ) | rubberduckdb@main: { dbMain . Name } ({ dbMain . DateCreated } )") ;
144
+ // could be an old tag, ...or the db is just out of date
145
+ Logger . LogWarning ( $ "Tag metadata mismatch, xmldoc update will not proceed; GitHub@main:{ ghNext . Name } ({ ghNext . DateCreated } ) | rubberduckdb@main: { dbNext . Name } ({ dbNext . DateCreated } )") ;
146
146
}
147
147
}
148
148
You can’t perform that action at this time.
0 commit comments