From 61fa13db3eb18939b0b5182bf59bbbd7ebc3207b Mon Sep 17 00:00:00 2001 From: rlyra8 Date: Thu, 26 Oct 2023 14:23:22 -0300 Subject: [PATCH] Fix Archiver URL error --- src/components/Footer/index.tsx | 2 +- src/data-access/impl.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx index ebea81cf..0a3f2106 100644 --- a/src/components/Footer/index.tsx +++ b/src/components/Footer/index.tsx @@ -1,7 +1,7 @@ import React from "react"; import * as S from "./styled"; -const version = "2023-10-26-30002c7"; +const version = "2023-10-26-cc82cb2"; const Footer: React.FC = () => { return ( diff --git a/src/data-access/impl.ts b/src/data-access/impl.ts index 4ccc2dd9..af102700 100644 --- a/src/data-access/impl.ts +++ b/src/data-access/impl.ts @@ -4,7 +4,7 @@ import { DataAccessError, OptimizeDataError, InvalidParameterError } from "../ut import control from "../entities/Chart"; export const ipRegExp = /https?\/((?:(?:2(?:[0-4][0-9]|5[0-5])|[0-1]?[0-9]?[0-9])\.){3}(?:(?:2([0-4][0-9]|5[0-5])|[0-1]?[0-9]?[0-9])))\//; -export const defaultHost = "10.0.38.46"; +export const defaultHost = "http://ais-eng-srv-ta.cnpem.br"; export class ArchiverDataAccess implements DataAccess{