A bit more detail... Order matters.

This deadlocks:

        <dependency>
            <groupId>com.google.api-ads</groupId>
            <artifactId>ads-lib</artifactId>
            <version>4.9.1</version>
        </dependency>
        <dependency>
            <groupId>com.google.api-ads</groupId>
            <artifactId>google-ads</artifactId>
            <version>10.1.0</version>
        </dependency>

This doesn't:

   <dependency>
      <groupId>com.google.api-ads</groupId>
      <artifactId>google-ads</artifactId>
      <version>10.1.0</version>
    </dependency>
        <dependency>
            <groupId>com.google.api-ads</groupId>
            <artifactId>ads-lib</artifactId>
            <version>4.9.1</version>
        </dependency>


On Saturday, January 23, 2021 at 1:09:58 AM UTC-8 Gregory Golberg wrote:

>
> Hello
>
> I have a program that uses google-ads with the below dependency in pom.xml:
>
>     <dependency>
>             <groupId>com.google.api-ads</groupId>
>             <artifactId>google-ads</artifactId>
>             <version>10.1.0</version>
>         </dependency>
>
> This authenticates and just calls listAccessibleCustomers of 
> CustomerServiceClient. So far so good.
>
> But once I merely add the following to pom.xml:
>
> <dependency>
>             <groupId>com.google.api-ads</groupId>
>             <artifactId>ads-lib</artifactId>
>             <version>4.9.1</version>
>         </dependency>
>
> It appears to get deadlocked somewhere, never returning from the 
> listAccessibleCustomers() call. Running Charles, I can see that the network 
> call returns with the customer list, but somewhere there is a deadlock.
>
> Any clues? 
>
> Thanks.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fe87a8c6-8911-4e9d-9d42-946fd7bdd21bn%40googlegroups.com.

Reply via email to