Skip to content

Commit

Permalink
fix failing build
Browse files Browse the repository at this point in the history
  • Loading branch information
I562548 committed Jul 12, 2024
1 parent 5e1d372 commit fbdb64d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,6 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${commons-logging.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ static void setUp() throws InterruptedException {
fail(MessageFormat.format("Specified service broker path \"{0}\" not exists", brokerPathString));
}
pushServiceBrokerApplication(brokerPath);
createServiceBroker(IntegrationTestConstants.SERVICE_BROKER_NAME, SERVICE_BROKER_ENDPOINT);
pushedServiceBroker = true;
try {
createServiceBroker(IntegrationTestConstants.SERVICE_BROKER_NAME, SERVICE_BROKER_ENDPOINT);
pushedServiceBroker = true;

} catch (CloudOperationException e) {
//Ignore because service broker with this name exists
}
}

@AfterAll
Expand Down

0 comments on commit fbdb64d

Please sign in to comment.