Skip to content

Commit

Permalink
Merge pull request #1934 from bcgov/bug/ticket-search-ur
Browse files Browse the repository at this point in the history
Bug/ticket search url
  • Loading branch information
pbolduc authored Aug 9, 2024
2 parents 84506c1 + abf6b95 commit 26fa430
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions gitops/charts/traffic-court-prod-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,13 @@ staff-api:
"RabbitMq__UseQuorumQueues": "true"
"COMS__BASEURL": "http://common-object-management-service:3000"
"TicketSearch__SearchType": "RoadSafety"
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 256Mi
staff-web:
replicaCount: 3
pdb:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace TrafficCourts.Citizen.Service.Services.Tickets.Search.Rsi
{
public interface IRoadSafetyTicketSearchApi
{
[Get("/api/v1/ticket/")]
[Get("/api/v1/ticket")]
Task<RawTicketSearchResponse> GetTicket(GetTicketParams ticketParams, CancellationToken cancellationToken);

[Get("/api/v1/ticket/{invoiceNumber}")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace TrafficCourts.TicketSearch.Rsi
{
public interface IRoadSafetyTicketSearchApi
{
[Get("/api/v1/ticket/")]
[Get("/api/v1/ticket")]
Task<RawTicketSearchResponse> GetTicket(GetTicketParams ticketParams, CancellationToken cancellationToken);

[Get("/api/v1/ticket/{invoiceNumber}")]
Expand Down
2 changes: 1 addition & 1 deletion src/backend/oracle-data-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>7.3</version>
<version>8.0</version>
</dependency>

<!-- Swagger UI -->
Expand Down

0 comments on commit 26fa430

Please sign in to comment.