Skip to content

Commit

Permalink
Merge pull request #1209 from US-CBP/GTAS1.2.1
Browse files Browse the repository at this point in the history
Gtas 1.2.1
  • Loading branch information
originalname51 authored Jun 19, 2019
2 parents b396817 + 10d5bac commit 7c9183e
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 69 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,54 @@
entitymanager.packages.to.scan=gov.gtas
neo4jusername=username
neo4jpassword=password
neo4jEnabled=false
neo4jEnabled=false
##################### MessageLoader #####################

inputType=two_dirs

message.dir.origin=C:\\MESSAGE
message.dir.processed=C:\\MESSAGEOLD

loader.fixedDelay.in.milliseconds=5000
loader.initialDelay.in.milliseconds=2000

sqs.loader.fixedDelay.in.milliseconds=1000
sqs.loader.initialDelay.in.milliseconds=1000
sqs.loader.enabled=false
sqs.loader.region=
##### uncomment the line below and provide the queue URL .... DO NOT PUSH THE URL TO GITHUB ####
# sqs.loader.queue=<AWS SQS Queue URL>

loader.isRunning=false

maxNumofFiles=5

###JMS###
inbound.loader.jms.queue=GTAS_INBOUND_Q_REDIS
outbound.loader.jms.queue=GTAS_LOADER_Q
#########
### REDIS ###
redis.connection.string=redis://0.0.0.0:6379
#############


##### Passenger ID Tag and BookingDetail Scheduler settings ####

cleanup.fixedDelay.in.milliseconds=5000
cleanup.initialDelay.in.milliseconds=2000

#########

##### Data Management Scheduler settings ####

datamanagement.fixedDelay.in.milliseconds=180
datamanagement.initialDelay.in.milliseconds=20

#########

##################### RuleRunner #####################

ruleRunner.fixedDelay.in.milliseconds=5000
ruleRunner.initialDelay.in.milliseconds=2000

ruleRunner.isRunning=false
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@
@Configuration
@EnableScheduling
@ComponentScan("gov.gtas.job.scheduler")
@PropertySource("classpath:jobScheduler.properties")
@PropertySource("classpath:commonservices.properties")
@PropertySource("classpath:dashboardJobScheduler.properties")
@PropertySource("classpath:singleNodeConfig.json")
@PropertySource(value = "file:${catalina.home}/conf/application.properties", ignoreResourceNotFound = true)
public class JobSchedulerConfig implements SchedulingConfigurer {

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@Configuration
@EnableScheduling
@ComponentScan("gov.gtas.parsers.redisson")
@PropertySource("classpath:redisloader.properties")
@PropertySource("classpath:commonservices.properties")
@PropertySource(value = "file:${catalina.home}/conf/application.properties", ignoreResourceNotFound = true)
public class RedisLoaderConfig implements SchedulingConfigurer {
@Override
Expand Down
13 changes: 0 additions & 13 deletions gtas-parent/gtas-parsers/src/main/resources/redisloader.properties

This file was deleted.

1 change: 1 addition & 0 deletions gtas-parent/gtas-webapp/src/main/webapp/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ var app;
})
.state('flights', {
url: '/flights',
roles: [USER_ROLES.ADMIN, USER_ROLES.VIEW_FLIGHT_PASSENGERS, USER_ROLES.MANAGE_QUERIES, USER_ROLES.MANAGE_RULES, USER_ROLES.MANAGE_WATCHLIST, USER_ROLES.ONE_DAY_LOOKOUT],
authenticate: true,
views: {
'@': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<div class="panel-body" style="height: 100%;">
<!-- <my-elem ></my-elem> -->

<iframe src="http://localhost:5601/app/kibana#/dashboard/7cfbbdc0-2e13-11e9-81a3-0f5bd8b0a7ac?embed=true&_g=(refreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-3d%2Fd%2Cmode%3Arelative%2Cto%3Anow%2B3d%2Fd))" height="100%" width="100%" frameBorder="0"></iframe>
</div>
<iframe src="http://localhost:5601/app/kibana#/dashboard/7cfbbdc0-2e13-11e9-81a3-0f5bd8b0a7ac?embed=true&_g=(refreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-3d%2Fd%2Cmode%3Arelative%2Cto%3Anow%2B3d%2Fd))" style="height: calc(80vh - 130px);" width="100%" frameBorder="0"></iframe>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 7c9183e

Please sign in to comment.