Merge pull request #5169 from betagouv/dev
This commit is contained in:
commit
7968ba44b7
3 changed files with 19 additions and 3 deletions
|
@ -1,7 +1,8 @@
|
||||||
import ProgressBar from './progress-bar';
|
import ProgressBar from './progress-bar';
|
||||||
import {
|
import {
|
||||||
errorFromDirectUploadMessage,
|
errorFromDirectUploadMessage,
|
||||||
FAILURE_CONNECTIVITY
|
ERROR_CODE_READ,
|
||||||
|
FAILURE_CLIENT
|
||||||
} from './file-upload-error';
|
} from './file-upload-error';
|
||||||
import { fire } from '@utils';
|
import { fire } from '@utils';
|
||||||
|
|
||||||
|
@ -58,8 +59,10 @@ addUploadEventListener(ERROR_EVENT, (event) => {
|
||||||
|
|
||||||
ProgressBar.error(id, errorMsg);
|
ProgressBar.error(id, errorMsg);
|
||||||
|
|
||||||
|
// Report unexpected client errors to Sentry.
|
||||||
|
// (But ignore usual client errors, or errors we can monitor better on the server side.)
|
||||||
let error = errorFromDirectUploadMessage(errorMsg);
|
let error = errorFromDirectUploadMessage(errorMsg);
|
||||||
if (error.failureReason != FAILURE_CONNECTIVITY) {
|
if (error.failureReason == FAILURE_CLIENT && error.code != ERROR_CODE_READ) {
|
||||||
fire(document, 'sentry:capture-exception', error);
|
fire(document, 'sentry:capture-exception', error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
.procedure-logos
|
.procedure-logos
|
||||||
= image_tag procedure.logo_url, alt: "logo #{procedure.libelle}"
|
- procedure_logo_alt = ''
|
||||||
|
- if procedure.service.present?
|
||||||
|
- procedure_logo_alt = "#{procedure.service.nom} − #{procedure.service.organisme}"
|
||||||
|
= image_tag procedure.logo_url, alt: procedure_logo_alt
|
||||||
- if procedure.euro_flag
|
- if procedure.euro_flag
|
||||||
= image_tag("flag_of_europe.svg", id: 'euro_flag', class: (!procedure.euro_flag ? "hidden" : ""))
|
= image_tag("flag_of_europe.svg", id: 'euro_flag', class: (!procedure.euro_flag ? "hidden" : ""))
|
||||||
%h1.procedure-title
|
%h1.procedure-title
|
||||||
|
|
|
@ -32,3 +32,13 @@ task :post_deploy do
|
||||||
|
|
||||||
sh "mina post_deploy domain=#{domains.first} branch=#{branch}"
|
sh "mina post_deploy domain=#{domains.first} branch=#{branch}"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
task :rollback do
|
||||||
|
domains = domains_for_stage(ENV.fetch('STAGE'))
|
||||||
|
branch = ENV.fetch('BRANCH')
|
||||||
|
|
||||||
|
domains.each do |domain|
|
||||||
|
sh "mina rollback domain=#{domain} branch=#{branch}"
|
||||||
|
sh "mina service:restart_puma domain=#{domain} branch=#{branch}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue