Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change server IP #28

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion front_end/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rad-detectors",
"version": "1.2.4",
"version": "1.2.5",
"homepage": "https://rad-mon.lnls.br",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion front_end/src/assets/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { DDictStr, DictEnumStr, DictNum, DictStr } from "./interfaces/patterns"

// const git_version = GitInfo()
const version: string = "v1.2.4"//+git_version.commit.shortHash + " / " + git_version.commit.date;
const version: string = "v1.2.5"//+git_version.commit.shortHash + " / " + git_version.commit.date;

// Integrated dose limits parameters
const led_limits: DictNum = {
Expand Down
2 changes: 1 addition & 1 deletion front_end/src/components/ModelPg/DetailedInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const DetailedInfo: React.FC<ModalInterface> = (props) => {
* with Archiver Viewer.
*/
function archViewerLink(): void {
let url_arch_view: string = "https://ais-eng-srv-la.cnpem.br/archiver-viewer/?"
let url_arch_view: string = "https://ais-eng-srv-ta.cnpem.br/archiver-viewer/?"

if(chartRefGN.current && chartRefI.current){
const date_interval: Date[] = chartRefGN.current.getDates();
Expand Down
2 changes: 1 addition & 1 deletion front_end/src/data-access/archiver/archiver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import axios from 'axios';
import { ArchiverData, ArchiverDataPoint, DataAccess } from '../../assets/interfaces/access-data';

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 = "ais-eng-srv-la.cnpem.br";
export const defaultHost = "ais-eng-srv-ta.cnpem.br";


/**
Expand Down
Loading