Skip to content

Commit ea3ab9c

Browse files
committed
Archetype fixes
- Make sure unimplemented coercion methods errors are more explicit - Fixed broken log messages - Added missing property when generating tool invokers - Removed outdated setting This fixes issue #135
1 parent 3351f48 commit ea3ab9c

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

archetypes/wanaku-provider-archetype/src/main/resources/archetype-resources/src/main/java/__name__ResourceDelegate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ protected String coerceResponse(Object response) throws InvalidResponseTypeExcep
6262
}
6363

6464
// Here, convert the response from whatever format it is, to a String instance.
65-
return null;
65+
throw new InvalidResponseTypeException("The downstream service has not implemented the response coercion method");
6666
}
6767
}

archetypes/wanaku-provider-archetype/src/main/resources/archetype-resources/src/main/resources/application.properties

-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ quarkus.log.category."ai.wanaku".level=INFO
3131
wanaku.service.provider.name=${name.toLowerCase()}
3232
wanaku.service.provider.base-uri=${name.toLowerCase()}://
3333

34-
%dev.wanaku.service.provider.router.address=http://localhost:8080
35-
%test.wanaku.service.provider.router.address=http://localhost:8080
36-
3734
# The service may have user-exposable parameters that can be set via CLI. The
3835
# example below is exposed as "noop" with the description
3936
# "Whether to do nothing or do something".

archetypes/wanaku-tool-service-archetype/src/main/resources/archetype-resources/src/main/java/InvocationService.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ public Uni<InquireReply> inquire(InquireRequest request) {
6565
}
6666

6767
void register(@Observes StartupEvent ev) {
68-
LOG.info("Registering resource service");
68+
LOG.info("Registering tool service");
6969

7070
delegate.register(config.name(), DiscoveryUtil.resolveRegistrationAddress(), port);
7171
}
7272

7373
void deregister(@Observes ShutdownEvent ev) {
74-
LOG.info("De-registering resource service");
74+
LOG.info("De-registering tool service");
7575

7676
delegate.deregister(config.name(), DiscoveryUtil.resolveRegistrationAddress(), port);
7777
}

archetypes/wanaku-tool-service-archetype/src/main/resources/archetype-resources/src/main/java/__name__Delegate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ protected String coerceResponse(Object response) throws InvalidResponseTypeExcep
3636
}
3737

3838
// Here, convert the response from whatever format it is, to a String instance.
39-
return null;
39+
throw new InvalidResponseTypeException("The downstream service has not implemented the response coercion method");
4040
}
4141
}

archetypes/wanaku-tool-service-archetype/src/main/resources/archetype-resources/src/main/resources/application.properties

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ quarkus.log.category."ai.wanaku".level=INFO
2828
%dev.quarkus.log.category."ai.wanaku".level=INFO
2929
%test.quarkus.log.category."ai.wanaku".level=INFO
3030

31+
wanaku.service.routing.name=${name.toLowerCase()}
32+
wanaku.service.routing.base-uri=${name.toLowerCase()}://
3133

3234
# Valkey configuration
3335

0 commit comments

Comments
 (0)