Hotfix/dos mitigation attempt error configuration (#3879)

* Fixes 'Task timed out after 60.03 seconds'

* DDoS rewrite fixes

Co-authored-by: zomars <zomars@me.com>
pull/3888/head
Alex van Andel 2022-08-17 00:38:26 +01:00 committed by zomars
parent 73e38384e2
commit a331d02668
1 changed files with 6 additions and 7 deletions

View File

@ -1,15 +1,14 @@
import { GetServerSidePropsContext } from "next";
import { GetStaticPropsContext } from "next";
import Link from "next/link";
import { useRouter } from "next/router";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import Button from "@calcom/ui/Button";
import { Icon } from "@calcom/ui/Icon";
import { useLocale } from "@lib/hooks/useLocale";
import AuthContainer from "@components/ui/AuthContainer";
import { ssrInit } from "@server/lib/ssr";
import { ssgInit } from "@server/lib/ssg";
export default function Error() {
const { t } = useLocale();
@ -40,12 +39,12 @@ export default function Error() {
);
}
export async function getServerSideProps(context: GetServerSidePropsContext) {
const ssr = await ssrInit(context);
export const getStaticProps = async (context: GetStaticPropsContext) => {
const ssr = await ssgInit(context);
return {
props: {
trpcState: ssr.dehydrate(),
},
};
}
};